$(function(){
	$(".Product")
	.hover(
		function(){
			$(this).find(".ProductListName a").css({'backgroundColor': '#000', 'color': '#fff'});
		},
		function(){
			$(this).find(".ProductListName a").css({'backgroundColor': '#fff', 'color': '#000'});
		})
	.each(function(){
		var height = $(this).find(".ProductListName").height();
		$(this).find(".ProductListName").css({'marginBottom': -height});
	});
	$(".NewsSummary").hover(
	function(){
		$(this).find(".NewsSummaryLink a").css({'backgroundColor': '#000', 'color': '#fff'});
	},
	function(){
		$(this).find(".NewsSummaryLink a").css({'backgroundColor': '#fff', 'color': '#000'});
	});
});
