// JavaScript Document   

$(document).ready(function(){
   $("a.leftList").hover(
	function(){
      $(this).css("background", "url(/common/img/boxUpper_RO.png) no-repeat center top");
	  $(this).children("span").css("background", "url(/common/img/boxLower_RO.png) no-repeat center bottom");
   },
   	function(){
	  $(this).css("background", "url(/common/img/boxUpper.png) no-repeat center top");
	  $(this).children("span").css("background", "url(/common/img/boxLower.png) no-repeat center bottom");
	});
   $("a.rightList").hover(
	function(){
      $(this).css("background", "url(/common/img/boxUpper_RO.png) no-repeat center top");
	  $(this).children("span").css("background", "url(/common/img/boxLower_RO.png) no-repeat center bottom");
   },
   	function(){
	  $(this).css("background", "url(/common/img/boxUpper.png) no-repeat center top");
	  $(this).children("span").css("background", "url(/common/img/boxLower.png) no-repeat center bottom");
	});
});

