 $(document).ready(function() {
		//menu button hover
        $(".menu-item").hover(function() {
            $(this).stop().animate({ marginTop: "8px"}, 200);
        }, function() {			
            $(this).stop().animate({ marginTop: "0px" }, 200);
        });   

		$(".root-sub-menu").hover(function() {
			$(this).stop().animate({ marginTop: "8px"}, 200, function(){
				$(this).find('.sub-menu-link, .sub-menu-link-1').fadeIn(200);
				});			
        }, function() {	
	        $(this).find('.sub-menu-link, .sub-menu-link-1').fadeOut(100,function(){
					$(this).parent().parent().stop().animate({ marginTop: "0px" }, 200);
				});					
        });		
		//checking if page visit from site's page
		switch(document.referrer){
			case "http://www.angerspot.com/":
			case "http://www.angerspot.com/anger-management-techniques":
			case "http://www.angerspot.com/appropriate":
			case "http://www.angerspot.com/explosive":
			case "http://www.angerspot.com/implosive":
			case "http://www.angerspot.com/anger-management-resources":
			case "http://www.angerspot.com/funny-videos":
			case "http://www.angerspot.com/relaxation-gallery":
			case "http://www.angerspot.com/online-class":
			case "http://www.angerspot.com/quiz":
			case "http://www.angerspot.com/anger-quotes":
			case "http://www.angerspot.com/professional":
			case "http://www.angerspot.com/products-center":
			case "http://www.angerspot.com/site-map":
			case "http://www.angerspot.com/contact":
				switch(document.URL){
					case "http://www.angerspot.com/":
						$(".menu-item:first").unbind();  
						$(".menu-item:first").stop().animate({ marginTop: "8px"}, 400);					
						break;			
					case "http://www.angerspot.com/anger-management-techniques":
					case "http://www.angerspot.com/appropriate":
					case "http://www.angerspot.com/explosive":
					case "http://www.angerspot.com/implosive":
						$(".root-sub-menu:first").unbind(); 
						$(".root-sub-menu:first").hover(function(){
							$(this).find('.sub-menu-link').fadeIn(200);
						}, function(){
							$(this).find('.sub-menu-link').fadeOut(100);
						}); 
						$(".root-sub-menu:first").stop().animate({ marginTop: "8px"}, 400);	
						break;	
					case "http://www.angerspot.com/anger-management-resources":
					case "http://www.angerspot.com/funny-videos":
					case "http://www.angerspot.com/relaxation-gallery":
					case "http://www.angerspot.com/online-class":
					case "http://www.angerspot.com/quiz":
					case "http://www.angerspot.com/anger-quotes":
					case "http://www.angerspot.com/professional":
						$(".root-sub-menu:last").unbind(); 
						$(".root-sub-menu:last").hover(function(){
							$(this).find('.sub-menu-link-1').fadeIn(200);
						}, function(){
							$(this).find('.sub-menu-link-1').fadeOut(100);
						}); 
						$(".root-sub-menu:last").stop().animate({ marginTop: "8px"}, 400);	
						break;
					case "http://www.angerspot.com/products-center":
						$(".menu-item:last").unbind();  
						$(".menu-item:last").stop().animate({ marginTop: "8px"}, 400);		
						break;
				}
				break;			
		}	    
    });
