kontorkoncept = {};
kontorkoncept.frontpagehover = {
	init: function() {
		$('div[class^=product-]',$('div.five-pics-fce'))
			.hover(kontorkoncept.frontpagehover.over,kontorkoncept.frontpagehover.out)
			.click(kontorkoncept.frontpagehover.click)
			.css('cursor','pointer');
	},

	over: function() {
		$('.image-hover, .hovertext-text',this).show();
	},
	out: function() {
		$('.image-hover, .hovertext-text',this).hide();
	},

	click: function() {
		document.location = $('.hovertext-text a',this).attr('href');
	}
}


$(kontorkoncept.frontpagehover.init);