jQuery(function($){

	$("TABLE.shopping TR.row_item").hover(
		function(){
			$(this).css("background-color","#0f0f0f");
		},
		function(){
			$(this).css("background-color","#000000");
		}
	);

	//Initialise the document.
	$(document).ready(
		function(){
			//alert("Ready.");
		}
	);

});