// JavaScript Document
$(document).ready(function() {
	// Bilder mit prettyPhoto
	init_prettyPhoto();
});
// 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;
});
