// JavaScript Document
$(document).ready(function(){
	$("a[rel^='PrettyPhoto']").each(function(){
		var rel = $(this).attr("rel");
		var tmp = rel.split(" ");
		var rel = "";
		for(var i in tmp){
			if(tmp[i].indexOf("PrettyPhoto")==0){
				var tmp2 = tmp[i].split(".");
				rel += "PrettyPhoto";
				if(tmp2.length>1){
					rel += "["+tmp2[1]+"]";
				}
				rel += " ";
			}else{
				rel += tmp[i]+" ";	
			}
		}
		$(this).attr("rel",rel);
	});
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme: 'light_rounded', /* light_rounded / dark_rounded / light_square / dark_square / facebook */
		allow_resize: false,
		overlay_gallery: false,
		counter_separator_label: '/'
	});
	$(".Slideshow").cycle("fade");
	
	$(".BoxServizio").hover(
		function(){
			$(this).animate({ marginTop: "-=10px" });	
		},
		function(){
			$(this).animate({ marginTop: "+=10px" } );
		}
	);
});
