$(document).ready(function(){
	//-------------------------------------home page nav----------------------------------------
	//nav roll ov
	
	//------------------------------inner page nav--------------------------------------
	
	//nav roll over
	$("#primaryNavInner li").mouseover(function(){
		if(!$(this).hasClass("currentPage")){
			$(this).addClass("selected");
		}
   }).mouseout(function(){
	   if(!$(this).hasClass("currentPage")){
	   	$(this).removeClass("selected");
	   }
   });
	
	//display subnav
	$("#primaryNavInner li").hover(function(){
		$(this)
			.find('ul.subnav')
			.stop(true, true)
			.fadeIn('slow');
	}, function(){
		$(this)
			.find('ul.subnav')
			.stop(true, true)
			.fadeOut('fast');
	});
	
	//subNav rollover
	$("#primaryNavInner .subnav li").mouseover(function(){
		 $(this).addClass("on");
	}).mouseout(function(){
		$(this).removeClass();
	});
	
});

