//Grafiken für Homeboxen vorladen
var img1 = new Image();
img1.src = "tl_files/layout/img/homebox/dach_fassadenbau_hover.jpg";

var img2 = new Image();
img2.src = "tl_files/layout/img/homebox/schieferarbeiten_hover.jpg";

var img3 = new Image();
img3.src = "tl_files/layout/img/homebox/holzarbeiten_hover.jpg";

$(document).ready(function(){	

	$("#box1").mouseover(function(){
		$("#box1 img").attr("src", "tl_files/layout/img/homebox/dach_fassadenbau_hover.jpg");
		$("#box1 a").css("text-decoration","underline");
	});
	$("#box1").mouseout(function(){
		$("#box1 img").attr("src", "tl_files/layout/img/homebox/dach_fassadenbau.jpg");
		$("#box1 a").css("text-decoration","none");
	});
	$("#box1").click(function(){
		document.location.href = $("#box1 a:first").attr("href");
	});
	
	$("#box2").mouseover(function(){
		$("#box2 img").attr("src", "tl_files/layout/img/homebox/schieferarbeiten_hover.jpg");
		$("#box2 a").css("text-decoration","underline");
	});
	$("#box2").mouseout(function(){
		$("#box2 img").attr("src", "tl_files/layout/img/homebox/schieferarbeiten.jpg");
		$("#box2 a").css("text-decoration","none");
	});
	$("#box2").click(function(){
		document.location.href = $("#box2 a:first").attr("href");
	});
	
	$("#box3").mouseover(function(){
		$("#box3 img").attr("src", "tl_files/layout/img/homebox/holzarbeiten_hover.jpg");
		$("#box3 a").css("text-decoration","underline");
	});
	$("#box3").mouseout(function(){
		$("#box3 img").attr("src", "tl_files/layout/img/homebox/holzarbeiten.jpg");
		$("#box3 a").css("text-decoration","none");
	});
	$("#box3").click(function(){
		document.location.href = $("#box3 a:first").attr("href");
	});
});

