$(document).ready(function(){
						   
		$("#box_1").hover(
			function(){
				//$(this).animate({height:"100%"}, 500);
				$('#special_content_1').fadeIn(300);
				$(this).css("background-position","0 -65px");
				$('#special_content_2').hide();
				$('#special_content_3').hide();
				$("#box_2").removeAttr("style");
				$("#box_3").removeAttr("style");
			},
			function(){
			}
		);
		$("#box_2").hover(
			function(){
				//$(this).animate({height:"100%"}, 500);
				$('#special_content_2').fadeIn(300);
				$(this).css("background-position","0 -65px");
				$('#special_content_1').hide();
				$('#special_content_3').hide();
				$("#box_1").removeAttr("style");
				$("#box_3").removeAttr("style");
			},
			function(){
			}
		);
		$("#box_3").hover(
			function(){
				//$(this).animate({height:"100%"}, 500);
				$('#special_content_3').fadeIn(300);
				$(this).css("background-position","0 -65px");
				$('#special_content_2').hide();
				$('#special_content_1').hide();
				$("#box_2").removeAttr("style");
				$("#box_1").removeAttr("style");
			},
			function(){
			}
		);
		
		var dropdownParents = $(".menu li ul").parent("li");
		//dropdownParents = $(dropdownParents).filter('.page-item-6');
		
		$('.page-item-6 a:first').click(function(event){
		  event.preventDefault();
		  return false;
		});

		$(dropdownParents).hover(
				function(){
					$(this).children("ul:first").removeAttr("style").css({left : "-175px"}).fadeIn(600);
				},
				function(){
					$(this).children("ul:first").stop().removeAttr("style").hide();
				});
						   });