$(document).ready(function()
{  
	$(".productBoxWide").click(function(){
		var url = $(this).children().children().children().children("div.bottom2").children("a").attr("href");
		location.href = url;
	});

	$(".productBoxWide").hover(function(){
		$(this).children().children().children("div.tekst").children().children("span.productName").addClass("over");
		
		$(this).children().children().children("div.tekst").children("div.bottom2").children("span.price").addClass("over");
		$(this).children().children().children("div.tekst").children("div.bottom2").children().children("span.more").addClass("over");
	}, function(){
		$(this).children().children().children("div.tekst").children().children("span.productName").removeClass("over");
		$(this).children().children().children("div.tekst").children("div.bottom2").children("span.price").removeClass("over");
		$(this).children().children().children("div.tekst").children("div.bottom2").children().children("span.more").removeClass("over");
	});
});
