// code for navigation

$(document).ready(function() {
	

		
		$(".sub2").parent().mouseover(function(){
			$(this).children(".sub2").toggle(); // show the sub menu
			
			
			/*$("#loginRightColTop").css({position: "static"});
			$("a.btnImgRegister").css({display: "none"});*/	
			  
		});
		
		$(".sub2").parent().mouseout(function(){
			$(this).children(".sub2").toggle(); // hide the sub menu
			
			/*$("#loginRightColTop").css({position: "relative"});
			$("a.btnImgRegister").css({display: "inline"});*/
		});
		
		$(".sub2").hover(function(){
			$(this).siblings("a").addClass("active"); 
		},function(){
			$(this).siblings("a").removeClass("active"); 
			  
		});
	

});



$(document).ready(function() {
	
		
		
		$(".sub").parent().mouseover(function(){
			$(this).children(".sub").toggle(); // show the sub menu
		});
		$(".sub").parent().mouseout(function(){
			$(this).children(".sub").toggle(); // hide the sub menu
		});
	

		$(".sub").hover(function(){
		   $("a.btnDashLooking").addClass("activeButton");
		},function(){
		   $("a.btnDashLooking").removeClass("activeButton");
		});

});









