// JavaScript Document

// <![CDATA[
			
			
			
// dropdown nav	

function setupNav(){
		$("li.dropdown").hover(	
			function(){ 
					if(ffMc2){
					$("ul.drop", this).show();	
					$("div.flashHolder").css({								 
											 });
				} else {
					$("ul.drop", this).fadeIn("fast");
				}
			},
			
			function(){ 
				if(ffMc2){
					$("ul", this).hide();
				} else {
					$("ul", this).fadeOut("fast");
				}	
			}
			
		);	
}

// ]]> 