
/**
 * This is the main javascript file that handles all the javascript stuff.
 */
$(document).ready(function() {
    
    // Render fonts with Cufon
    Cufon.replace('h1, h2, h3, #news li, #contact span, #shows li', {
        fontFamily: 'Futura LT'
    });
    
    // Tooltips
    $(".icontip").tipTip({
        maxWidth: "auto", 
        edgeOffset: 25,
        defaultPosition: 'top',
        delay: 100
    });
    
    $(".tip").tipTip({
        maxWidth: "auto", 
        defaultPosition: 'top',
        delay: 100
    });
    
});
