  
jQuery("#main_nav").ready(function(){

    /*
    This initializes the dropdown menus

    Disable for IE6
    */ 

    jQuery("ul.dropdown li").hover(function(){

       jQuery(this).addClass("hover");
    
        if (!isIE6)
        {
            jQuery('ul.submenu:first',this).show();
            jQuery('ul.submenuN:first',this).show();
            jQuery('ul.submenuTVSh:first',this).show();
            jQuery('ul.submenuTVSc:first',this).show();
        }

    }, function(){

        jQuery(this).removeClass("hover");
    
        if (!isIE6)
        {
            jQuery('ul.submenu:first',this).hide();
            jQuery('ul.submenuN:first',this).hide();
            jQuery('ul.submenuTVSh:first',this).hide();
            jQuery('ul.submenuTVSc:first',this).hide();
        }
    });

	jQuery('#photos').hover(
		function(){ jQuery('#photos_on').show(); },
		function(){ jQuery('#photos_on').hide(); }
	);

	jQuery('#videos').hover(
		function(){ jQuery('#videos_on').show(); },
		function(){ jQuery('#videos_on').hide(); }
	);

	jQuery('#podcasts').hover(
		function(){ jQuery('#podcasts_on').show(); },
		function(){ jQuery('#podcasts_on').hide(); }
	);
	
	jQuery('#mobile').hover(
		function(){ jQuery('#mobile_on').show(); },
		function(){ jQuery('#mobile_on').hide(); }
	);
});