$(document).ready(function() {
	$(".brokprod").hover(function() {
		$(this).css({
			"cursor": "pointer",
			"background": "#eeeeee"
		});
	},function() {
		$(this).css({
			"background": "#ffffff"
		});	
	}).biggerlink();
});
