Cufon.replace('.gotham-black, #content.base h2, #content.base h1, nav li span, footer li ul li span, #sidebar div.top-button', { fontFamily: 'Gotham', hover: true });

jQuery.noConflict();

function assign_fitted() {jQuery('.clickable').fitted();}

function superfish() { 
    jQuery('ul.sf-menu').superfish({ 
            delay: 500, 
            animation: {opacity:'show'},
            speed: 'normal',
            autoArrows: false
    });
} 
 
function form_input_classes(){
    jQuery('input[type="text"]').addClass('text');
    jQuery('input[type="password"]').addClass('text');
    jQuery('input[type="checkbox"]').addClass('checkbox');
    jQuery('input[type="radio"]').addClass('radiobutton');
    jQuery('input[type="submit"]').addClass('submit');
    jQuery('input[type="image"]').addClass('buttonImage');
}

function form_labelize(){  
    jQuery(".labelize input:text").clearingInput(); 
}   

jQuery(document).ready(function() {
    form_input_classes();
    form_labelize();
    assign_fitted();
    superfish();
});
