// JavaScript Document
$(function(){
	
	
	$('#menu table td a').mouseenter(function(){
		 $(this).parent('td').animate({
			backgroundPosition: "0 0"
		},250);
	}).mouseleave(function(){
		 //console.log("leave : "+ $(this));
		 $(this).parent('td').animate({
			backgroundPosition: "0px 100px"
		},250);
	});	
	
	
	
	$('#boxLine .box').mouseenter(function(){
		$(this).addClass("hover"); 
		 $(this).animate({
			backgroundPosition: "0 bottom"
		},250);
	}).mouseleave(function(){
		 //console.log("leave : "+ $(this));
		 $(this).animate({
			backgroundPosition: "-240px bottom"
		},250);
		 $(this).removeClass("hover"); 
	});	
	
		$('#boxLine2 .box').mouseenter(function(){
		$(this).addClass("hover"); 
		 $(this).animate({
			backgroundPosition: "0 bottom"
		},250);
	}).mouseleave(function(){
		 //console.log("leave : "+ $(this));
		 $(this).animate({
			backgroundPosition: "-240px bottom"
		},250);
		 $(this).removeClass("hover"); 
	});	

	
});


