$(function(){
	$('#tbl_product tr td').mouseover(function(){
		$(this).parent('tr').children('td').css('backgroundColor','#EEE7D7');
	}).mouseout(function(){
		$(this).parent('tr').children('td').css('backgroundColor','#FFFAEE');
	})	   

	$('.charname').focus(function(){
		$(this).css('backgroundColor','#FFEEFF');
	}).blur(function(){
		$(this).css('backgroundColor','white');
	})
	
	$('.buyit').mouseover(function(){
		$(this).css('borderColor','orange');
	}).mouseout(function(){
		$(this).css('borderColor','#7b9ebd');
	})
})
