// JavaScript Document

jQuery(document).ready(function(){

	/* ************************ */
	/*    Link 1 Functions      */
	/* ************************ */	
	jQuery("#link1").hover(
	function(){		
		//jQuery("#nav-hover1").show();
		hideMenus();
	},
	function(){
		//jQuery("#nav-hover1").hide();
	});

	/* ************************ */
	/*    Link 2 Functions      */
	/* ************************ */	
	jQuery("#link2").hover(
	function(){		
		//jQuery("#nav-hover2").show();
		hideMenus();
	},
	function(){
		//jQuery("#nav-hover2").hide();
	});

	/* ************************ */
	/*    Link 3 Functions      */
	/* ************************ */	
	jQuery("#link3").hover(
	function(){		
		//jQuery("#light3").show();
		//jQuery("#nav-hover3").show();
		hideMenus();
		jQuery("#incorporation").show();
	},
	function(){
		//jQuery("#light3").hide();
		//jQuery("#nav-hover3").hide();
	});

	/* ************************ */
	/*    Link 4 Functions      */
	/* ************************ */	
	jQuery("#link4").hover(
	function(){		
		//jQuery("#light4").show();
		//jQuery("#nav-hover4").show();
		hideMenus();
		//jQuery("#resources").show();
	},
	function(){
		//jQuery("#light4").hide();
		//jQuery("#nav-hover4").hide();
	});

	/* ************************ */
	/*    Link 5 Functions      */
	/* ************************ */	
	jQuery("#link5").hover(
	function(){		
		//jQuery("#light5").show();
		//jQuery("#nav-hover5").show();
		hideMenus();
	},
	function(){
		//jQuery("#light5").hide();
		//jQuery("#nav-hover5").hide();
	});

	/* ************************ */
	/*    Link 6 Functions      */
	/* ************************ */	
	jQuery("#link6").hover(
	function(){		
		//jQuery("#light6").show();
		//jQuery("#nav-hover6").show();
		hideMenus();
	},
	function(){
		//jQuery("#light6").hide();
		//jQuery("#nav-hover6").hide();
	});
	
	
	/* ************************************ */
	/*    incorporation SubMenu Functions   */
	/* ************************************ */	
	jQuery("#incorporation").hover(
	function(){		
		//jQuery("#light3").show();
		//jQuery("#nav-hover3").show();
	},
	function(){
		jQuery("#incorporation").hide();
		//jQuery("#light3").hide();
		//jQuery("#nav-hover3").hide();
	});
	

	jQuery("#header").mouseenter(function(){
										  
		jQuery("#incorporation").hide();									  
	});

});



function hideMenus(divID){
	 
	jQuery("#incorporation").hide();	
}


/* ************************ */
/*    Facebook Friend Add   */
/* ************************ */	
function fbs_click(){
	u=location.href;
	t=document.title;
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
	return false;
}