jQuery.noConflict();
jQuery(document).ready(function($){

	$('#imNewHere').click(function(){
	   	$(this).fadeOut('fast')
		$('#ddOverlay').fadeIn('fast');
	   	$('#panelWrapper').slideDown();
	});
	$('#ddOverlay, #closeDD').click(function(){
		$('#imNewHere').fadeIn('fast');
	   	$('#panelWrapper').slideUp('fast');
	   	$('#ddOverlay').fadeOut('slow');
	});
	
	//cache nav  
    var nav = $(".mainNav");  

    //add indicators and hovers to submenu parents  
    nav.find("li.hasChildren").each(function() {  
            //show subnav on hover  
            $(this).mouseenter(function() {  
                $(this).addClass('showMenu');
				$(this).find("ul").stop(true, true).fadeIn('fast');  
            });  

            //hide submenus on exit  
            $(this).mouseleave(function() {  

				$(this).find("ul").stop(true, true).fadeOut('fast');  
                $(this).removeClass('showMenu');
            });  
    });
		
});
