$(document).ready(function(){
	
	$('div.box').hover(function(){
		$(this).find('div.box_bg').addClass('box_bg_hover');
	},
	function(){
		$(this).find('div.box_bg').addClass('box_bg_normal');
		$(this).find('div.box_bg').removeClass('box_bg_hover');
	});
	
	$('div.details a').click(function(e){
		e.preventDefault;
	});
	
	$('div.box').click(function(){
		var myHref = $(this).find('div.details a').attr('href');
		window.location = 'http://www.landhaus-heideschmiede.de/'+myHref;
	});
	
}); 
