/*
Theme Name: Trance Shift 6 "THE QUARTZ"
Script Description: ScrollingMenu with jQuery
*/
jQuery(document).ready(function(){
    jQuery("#navigationheader_ul li").hover(function(){
            jQuery("ul", this).fadeIn("slow");
        }, function(){
            jQuery("ul", this).fadeOut("fast");
        }
    );
});
