Cufon.replace('.spoleto', { fontFamily: 'Spoleto' });
Cufon.replace('.spoleto.red, #framework #SKIN h1, #framework td.headertitle', { color: '-linear-gradient(#cd0000, #ff1a00)', fontFamily: 'Spoleto' });
Cufon.replace('.spoleto.yellow', { color: '-linear-gradient(#f9c839, #e4ad0a)', fontFamily: 'Spoleto' });
Cufon.replace('h2.widget_title, .twcent', { fontFamily: 'TW Cent' });

jQuery.noConflict();

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


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();

});