$(function() {

$('div.centerBoxContentsNew').hover(
	function(){ $(this).css({"background-color":"#cccccc"}); },
	function(){ $(this).css({"background-color":"#ffffff"}); }
);

});

