$j(document).ready(function() {  
    // ROUNDED CORNERS
    $j('.rounded5').corner('5px');
	
	// FANCYBOX IMMAGINI
	$j("a.foto").fancybox({});
	
	// MAPPA
	$j("#map").gMap(
		{
			markers		: [{latitude: 37.50602042710755, longitude: 15.084836035966873}],
			zoom		: 16,
			controls	: ["GSmallMapControl", "GMapTypeControl"],
			scrollwheel	: false
		}
	);
	
	// GALLERIA
	$j('.ad-gallery').adGallery(
		{
			loader_image: '/images/loader.gif',
			width		: 960, // Width of the image, set to false and it will read the CSS width
			height		: 350, // Height of the image, set to false and it will read the CSS height
			slideshow	: 
				{
					enable		: true,
					autostart	: true,
					speed		: 5000,
					start_label	: '<img src="/images/play_16.png" alt="Play">',
					stop_label	: '<img src="/images/pause_16.png" alt="Pausa">'
				}
		}
	);
	
	// FORM PRENOTA
	$j(".menu .last a").fancybox(
		{
			autoDimensions	: false,
			titleShow		: false,
			scrolling		: 'auto',
			overlayShow		: true,
			overlayOpacity	: 0.9,
			overlayColor	: '#000',
			height			: 400
		}
	);

});

