$(document).ready(function() {	
$("#txtHover1").animate({"top": "319px"}, 1000);
$("#txtHover2").animate({"top": "319px"}, 1000);
$("#txtHover3").animate({"top": "319px"}, 1000);
$("#txtHover4").animate({"top": "136px"}, 1000);
$("#txtHover5").animate({"top": "136px"}, 1000);
$("#txtHover6").animate({"top": "180px"}, 1000);
$("#txtHover8").animate({"top": "116px"}, 1000);
$("#txtHover9").animate({"top": "180px"}, 1000);
//box1
	$("#box1").mouseenter(function(){
	   	$("#txtHover1").animate({"top": "249px"}, 250);
	 });
	 $("#box1").mouseleave(function(){
	   	$("#txtHover1").animate({"top": "319px"}, 250);
	 });
//box2	 
	 $("#box2").mouseenter(function(){
	   	$("#txtHover2").animate({"top": "249px"}, 250);
	 });
	 $("#box2").mouseleave(function(){
	   	$("#txtHover2").animate({"top": "319px"}, 250);
	 });
//box3 
	 $("#box3").mouseenter(function(){
	   	$("#txtHover3").animate({"top": "249px"}, 250);
	 });
	 $("#box3").mouseleave(function(){
	   	$("#txtHover3").animate({"top": "319px"}, 250);
	 });
//box4
	 $("#box4").mouseenter(function(){
	   	$("#txtHover4").animate({"top": "40px"}, 250);
	 });
	 $("#box4").mouseleave(function(){
	   	$("#txtHover4").animate({"top": "136px"}, 250);
	 });
//box4
	 $("#box5").mouseenter(function(){
	   	$("#txtHover5").animate({"top": "40px"}, 250);
	 });
	 $("#box5").mouseleave(function(){
	   	$("#txtHover5").animate({"top": "136px"}, 250);
	 });		
//box6	 
	 $("#box6").mouseenter(function(){
	   	$("#txtHover6").animate({"top": "110px"}, 250);
	 });
	 $("#box6").mouseleave(function(){
	   	$("#txtHover6").animate({"top": "180px"}, 250);
	 });	 
//box8	 
	 $("#box8").mouseenter(function(){
	   	$("#txtHover8").animate({"top": "46px"}, 250);
	 });
	 $("#box8").mouseleave(function(){
	   	$("#txtHover8").animate({"top": "116px"}, 250);
	 });
//box9	 
	 $("#box9").mouseenter(function(){
	   	$("#txtHover9").animate({"top": "110px"}, 250);
	 });
	 $("#box9").mouseleave(function(){
	   	$("#txtHover9").animate({"top": "180px"}, 250);
	 });
});
