
$(document).ready(function(){				   
	$('table#priceguides tr:odd').css({'background-color':'#f1f1f1'});
	
	$('table#priceguides tr').hover(function(){
		$(this).css({'background-color':'#ccc'})
	},function(){
		$('table#priceguides tr:odd').css({'background-color':'#f1f1f1'})
		$('table#priceguides tr:even').css({'background-color':'#fff'});
	});				   
});
