/*---------------------------------------------------------
  ERE : home
----------------------------------------------------------*/

/* header_image
----------------------------------------*/
$(function(){
	$("a#l1").mouseover(function(){
		$("a#l1 img:not(:animated)")
		 .animate({width:"69px",marginTop:"-5px",marginLeft:"-5px"},"fast","swing");
	}).mouseout(function(){
		$("a#l1 img")
		 .animate({width:"59px",marginTop:"0",marginLeft:"0"});
	});
	$("a#l2").mouseover(function(){
		$("a#l2 img:not(:animated)")
		 .animate({width:"160px",marginTop:"-5px",marginLeft:"-4px"},"fast","swing");
	}).mouseout(function(){
		$("a#l2 img")
		 .animate({width:"150px",marginTop:"0",marginLeft:"0"});
	});
	$("a#l3").mouseover(function(){
		$("a#l3 img:not(:animated)")
		 .animate({width:"113px",marginTop:"-5px",marginLeft:"-5px"},"fast","swing");
	}).mouseout(function(){
		$("a#l3 img")
		 .animate({width:"103px",marginTop:"0",marginLeft:"0"});
	});
	$("a#m1").mouseover(function(){
		$("a#m1 img:not(:animated)")
		 .animate({width:"69px",marginTop:"-5px",marginLeft:"-5px"},"fast","swing");
	}).mouseout(function(){
		$("a#m1 img")
		 .animate({width:"59px",marginTop:"0",marginLeft:"0"});
	});
	$("a#m2").mouseover(function(){
		$("a#m2 img:not(:animated)")
		 .animate({width:"143px",marginTop:"-5px",marginLeft:"-5px"},"fast","swing");
	}).mouseout(function(){
		$("a#m2 img")
		 .animate({width:"133px",marginTop:"0",marginLeft:"0"});
	});
	$("a#m3").mouseover(function(){
		$("a#m3 img:not(:animated)")
		 .animate({width:"160px",marginTop:"-5px",marginLeft:"-5px"},"fast","swing");
	}).mouseout(function(){
		$("a#m3 img")
		 .animate({width:"150px",marginTop:"0",marginLeft:"0"});
	});
});
