$(document).ready( 
	 function(){ 	
	 	 $("ul#navigation li span.extra").hide(); 	 
	 	 $("ul#navigation li a").bind("mouseenter",function(){	 		 
	 	 		 $(this).parent().find("span.extra").css("text-indent", 0).fadeIn(500); 	 		 
	 	 }).bind("mouseleave",function(){ 	 	
	 	 	 	$(this).parent().find("span.extra").fadeOut(300);
	 	 }); 
	
		$('a.email').each(function(){
			e = this.rel.replace('/','@');
			this.href = 'mailto:' + e;
			$(this).text(e);
		});
			 	
	 	if( $("div#page.gallery").length >= 1 )
	 	{	 	 
		 $.ajax({
	       type: "GET",
	       url: "js/jquery.prettyPhoto.js",
	       dataType: "script",
	       cache: true,
	       success: function(){              
	            $("a[rel^='scurdiaPhotogallery']").prettyPhoto({
									animationSpeed: 'normal',
									padding: 25,
									opacity: 0.65,
									showTitle: false,
									allowresize: true,
									counter_separator_label: '/', 
									theme: 'light_square',
									callback: function(){}
						});
	        }
	        });	 
	 	} 	 
});