$('.presseFoto').mouseenter(
	function(){
		var pos = $(this).css('left');
		var id = $(this).attr('id');
		$('#hoverRahmen').css('left',pos).attr('name',id).show();
	});

$('#hoverRahmen').mouseleave(function(){
	$(this).hide();
});
$('#hoverRahmen').click(function(){
	var fotoLinkID = $('#hoverRahmen').attr('name');
	if (fotoLinkID)
	{
		var fotoLink = $('#'+fotoLinkID);
		var bildGross = fotoLink.attr('href');
		var text = fotoLink.attr('rel');
		var bildMittel = '/pressefotos/mittel_'+bildGross.replace(/\/pressefotos\//g,'');
		var pos = fotoLink.css('left');
		
		text = text.replace(/\[br\]/g,'<br/>');

		$('#fotoRahmen').fadeOut('fast',function(){
			$(this).css('left',pos).show();
		});
		
		$('#presseFotoContainer').fadeOut('fast',function(){
														  
			$('#bildInfo').html(text);
			$('#presseFotoDownloadLink').attr('href',bildGross);
			
			$('#presseFotoMittel').attr('src',bildMittel).load(function(){
				$('#presseFotoContainer').fadeIn();
			});
			
		});
	
	}
});
