function ActivateHover()
{
	//Oversigt
	$(document).ready(function() {
		$(".PList div").mouseover(function (e) {
			$(this).find("div.PListOverlay").css('display', 'block');
		});
		$(".PList div").mouseout(function (e) {
			$(this).find("div.PListOverlay").css('display', 'none');
		});
		$(".PList div").click(function (e) {
			if ($("input.filter-item").length > 0) {
			var offset = $(this).position().top;	
			self.offset = offset;
			self.buildUrl();
			}
			location.href = $(this).find('p a').attr('href');
		});
	});
	
	//Vareliste
	$(document).ready(function() {
		$(".ProductList").mouseover(function (e) {
			$(this).find("div.overlay").css('display', 'block');
		});
		$(".ProductList").mouseout(function (e) {
	            $(this).find("div.overlay").css('display', 'none');
	        });
	        $(".ProductList").click(function (e) {
                if ($("input.filter-item").length > 0) {
                var offset = $(this).position().top;	
                self.offset = offset;
                self.buildUrl();
            }
	        location.href = $(this).find('.Img a').attr('href');
	    });
	});
	
}

