$(function() {
	//Navigation
	$(".latest_img").hover(function(){
	$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	},function(){
	$(this).fadeTo("fast", 0.0); // This should set the opacity back to 30% on mouseout
	});
	
	$(".gallery a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'slow',slideshow:5000});
	$(".gallery:gt(0) a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'fast',slideshow:5000});
		
	//alert("Navigation.js geladen");
});
