
$(document).ready(function(){

	$(".search_table td.blu").hover(function() {
		$(this).css("background","#e2f0fd");
	}, function() {
		$(this).css("background","url(/img/search_table_td_bg.gif) bottom repeat-x");
	});

	$(".search_table td.org").hover(function() {
		$(this).css("background","#ffe3c7");
	}, function() {
		$(this).css("background","url(/img/search_table_td_bg.gif) bottom repeat-x");
	});

	$(".search_table td.ylw").hover(function() {
		$(this).css("background","#fefee1");
	}, function() {
		$(this).css("background","url(/img/search_table_td_bg.gif) bottom repeat-x");
	});

	$(".search_table td.pnk").hover(function() {
		$(this).css("background","#ffe6f3");
	}, function() {
		$(this).css("background","url(/img/search_table_td_bg.gif) bottom repeat-x");
	});

});


