//<![CDATA[

$(document).ready(function(){
	$("#left .box").css("cursor", "pointer");
	$("#box-1").mouseover(function(){
		$("#box-1 .box.top").css("background", "url(./css/basic/box-top-active-bg.gif) left top no-repeat");
		$("#box-1 .box.center").css("background", "#eaeaea url(./css/basic/box-center-active-bg.gif) left top repeat-x");
		$("#box-1 .box.bottom").css("background", "url(./css/basic/box-bottom-active-bg2.gif) left bottom no-repeat");
	}).mouseout(function(){
		$("#box-1 .box.top").css("background", "url(./css/basic/box-top-bg.gif) left top no-repeat");
		$("#box-1 .box.center").css("background", "#efefef url(./css/basic/box-center-bg.gif) left top repeat-x");
		$("#box-1 .box.bottom").css("background", "url(./css/basic/box-bottom-bg.gif) left bottom no-repeat");
	}).click(function(){
		window.location.href = "leistungen.html"
	});
});


//]]>
