$(function() {

	$(".thumbnail").hover(function(){
		$(this).css("cursor", "pointer");
	}, function(){
		$(this).css("cursor", "default");
	});
	
	$(".thumbnail").click(function(){
		$(".image-wrapper").hide();
		$(".image-wrapper").html("<img src='uploads/images/"+this.id+".jpg' />");
		$(".image-wrapper").fadeIn("slow");
		
		if ($(this).attr("title") != '') {
			$(".thumbnail-caption").html($(this).attr("title"));
		}
	});
	
	/*$(".employees td.mitarbeiter-bild").css({borderTop: "1px solid #12104a", borderBottom: "1px solid #12104a"});
	$(".employees td.mitarbeiter-text").css({padding: "13px 10px 13px 20px"});*/
	$(".employees tr:first-child td").css({borderTop: 0});
	$(".employees td img").css({borderRight: "1px solid #ffffff"});
	$(".employees tr td:last-child img").css({border: 0});
	$(".employees td:last-child img").css({border: 0});
	
	$("a.fb").fancybox();
	
});
