$(document).ready(function(){
	$("div.customer_box#fm").mouseover(function(){
		$("div.customer_box#fm").css({backgroundImage:"url(img/fm.gif)" });
		$("div.customer_box#fm span.text").toggle();
		$("div.customer_box#fm span.link").toggle();
	});
	
	$("div.customer_box#fm").mouseout(function(){
		$("div.customer_box#fm").css({backgroundImage:"url(img/none.gif)" });
		$("div.customer_box#fm span.text").toggle();
		$("div.customer_box#fm span.link").toggle();
	});
	
	$("div.customer_box#tr").mouseover(function(){
		$("div.customer_box#tr").css({backgroundImage:"url(img/tr.gif)" });
		$("div.customer_box#tr span.text").toggle();
		$("div.customer_box#tr span.link").toggle();
	});
	
	$("div.customer_box#tr").mouseout(function(){
		$("div.customer_box#tr").css({backgroundImage:"url(img/none.gif)" });
		$("div.customer_box#tr span.text").toggle();
		$("div.customer_box#tr span.link").toggle();
	});
	
	$("div.customer_box#sm").mouseover(function(){
		$("div.customer_box#sm").css({backgroundImage:"url(img/sm.gif)" });
		$("div.customer_box#sm span.text").toggle();
		$("div.customer_box#sm span.link").toggle();
	});
	
	$("div.customer_box#sm").mouseout(function(){
		$("div.customer_box#sm").css({backgroundImage:"url(img/none.gif)" });
		$("div.customer_box#sm span.text").toggle();
		$("div.customer_box#sm span.link").toggle();
	 });
	
	$("div.customer_box#jm").mouseover(function(){
		$("div.customer_box#jm").css({backgroundImage:"url(img/jm.gif)" });
		$("div.customer_box#jm span.text").toggle();
		$("div.customer_box#jm span.link").toggle();
	});
	
	$("div.customer_box#jm").mouseout(function(){
		$("div.customer_box#jm").css({backgroundImage:"url(img/none.gif)" });
		$("div.customer_box#jm span.text").toggle();
		$("div.customer_box#jm span.link").toggle();
	});
	
	$("div.customer_box#sp").mouseover(function(){
		$("div.customer_box#sp").css({backgroundImage:"url(img/sp.gif)" });
		$("div.customer_box#sp span.text").toggle();
		$("div.customer_box#sp span.link").toggle();
	});
	
	$("div.customer_box#sp").mouseout(function(){
		$("div.customer_box#sp").css({backgroundImage:"url(img/none.gif)" });
		$("div.customer_box#sp span.text").toggle();
		$("div.customer_box#sp span.link").toggle();
	});
	
	$("div.customer_box#kc").mouseover(function(){
		$("div.customer_box#kc").css({backgroundImage:"url(img/kc.gif)" });
		$("div.customer_box#kc span.text").toggle();
		$("div.customer_box#kc span.link").toggle();
	});
	
	$("div.customer_box#kc").mouseout(function(){
		$("div.customer_box#kc").css({backgroundImage:"url(img/none.gif)" });
		$("div.customer_box#kc span.text").toggle();
		$("div.customer_box#kc span.link").toggle();
	});
});