$().ready(function(){
// team
$(".headline-plate .headline a").hover(function(){
	file=$(this).attr("data-rel");
	varTop=($.browser.msie) ? -15 : -165;
	$(this).append("<div class='team-img-large' style='display:block; top:"+varTop+"'><img src='' border='0' /></div>");
	$(this).find(".team-img-large img").attr("src","../create-img.php?file="+file);
	$(this).find(".team-img-large img").load(function(){
		$(this).show();
		$(this).parent().show();
	});
	
},function(){
	$(this).find(".team-img-large").hide();
	$(this).find(".team-img-large").remove();
});

//bilderreihe
$(".content-images a").hover(function(){
	file=$(this).attr("data-rel");
	$(this).append("<div class='team-img-large' style='display:block'><img src='' border='0' /></div>");
	$(this).find(".team-img-large img").attr("src","../create-img.php?file="+file);
	$(this).find(".team-img-large img").load(function(){
		$(this).show();
		$(this).parent().show();
	});
	
},function(){
	$(this).find(".team-img-large").hide();
	$(this).find(".team-img-large").remove();
});

//kunden
$(".customer-logos a").hover(function(){
	file=$(this).attr("rel");
	text=$(this).attr("text-rel");
	kunde=$(this).attr("kunde-rel");
	$(this).append("<div class='team-img-large' style='display:block; background-image:url(../bilder/image-popup0.png)'><img src='' border='0' /><span><strong class='headline'>"+kunde+"</strong><br/>"+text+"</span></div>");
	$(this).find(".team-img-large img").attr("src","../create-img.php?file="+file);
	$(this).find(".team-img-large img").load(function(){
		$(this).show();
		$(this).parent().show();
	});
	
},function(){
	$(this).find(".team-img-large").hide();
	$(this).find(".team-img-large").remove();
});
});

