$(document).ready(function() {
    Cufon.replace('ul#main_menu', {
        hover: true
    });
    Cufon.replace('h2');
	Cufon.replace('h3');
	Cufon.replace('.slogan');
	Cufon.replace('.slogan_green');
	Cufon.replace('.slogan_blue');
	Cufon.replace('.slogan_red');

/*The only solution I found to use Cufon on <input type="submit"/> buttons was to use Javascript (jQuery personally).
Copy the input button's text (the "value" attribute) to a span . 
Replace the span using Cufon.replace()
Remove the input button's text
Position the span over the button
Propagate the click() event from the span to the button*/
    
    $('.main_banner').cycle({
        fx:    'fade',
		speed:  2500,
		timeout: 14000,
        delay: -4000
    });
});

