jQuery.noConflict();

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

function call_cycle(){ 
    jQuery('#rotator-cycle') 
    .before('<div id="rotator-nav"><a id="prev" href="#">Previous</a><a id="next" href="#">Next</a></div>') 
    .cycle({ 
        fx:     'fade', 
        speed:  'fast', 
        timeout: 2400, 
        next:   '#next', 
        prev:   '#prev' 
    });

}

function set_columns(){jQuery('#content').equalHeights();}

function cufon_set(){
    Cufon.replace('.f-replace, #nav, h1, h2');
}

jQuery(document).ready(function() {
    form_input_classes();
    form_labelize();
    call_cycle();
    cufon_set();
    set_columns();
});