// JavaScript Document
$(document).ready(function() {
	// Bilder mit prettyPhoto
	init_prettyPhoto();
	$('img.thumbnail').hover(function(e){
		var id = $(this).attr('id');
		if (id) {
			var mt = e.pageY - 100;
			var ml = e.pageX + 10;
			$('<img/>').attr('src',id).addClass('bigPic').css({top: mt, left: ml, position: 'absolute', zIndex: 1000}).appendTo('body');
		}
	}, function(e){
		if ($('.bigPic').length) {$('.bigPic').remove();}
	});
});
// prettyPhoto Links
function init_prettyPhoto() {
	if (!$("a[rel^='prettyPhoto']").length) {return;}
	$("a[rel^='prettyPhoto']").prettyPhoto();
}
// Linkchanger fuer die PP-Links, damit die IDs etc. nicht im href vorkommen
$("a[rel^='pp']").live('click',function(){
	window.open($(this).attr('href')+'?'+$(this).attr('id'),'_blank');
	return false;
});

