jQuery.noConflict();

jQuery(function($){

    Cufon.replace('h1.cufon');

    if (jQuery("#slideshow").length > 0) {
        jQuery('#slideshow').cycle({
            fx: 'fade',
            speed: 3000
        });
    }

    $('#menu-primary-menu li').hover(
        function(){
            $('ul', this).show();
        },
        function(){
            $('ul', this).hide();
        });

});

