$(document).ready(function(){
	$("#album1").jqGalScroll({
		height:730,width:725,ease:'swing',speed:1000,direction :"vertical"
	});
	$("#album2").jqGalScroll({
		height:730,width:725,ease:'swing',speed:1000,direction :"vertical"
	});
	$("#album3").jqGalScroll({
		height:730,width:725,ease:'swing',speed:1000,direction :"vertical"
	});
		
	// GOOGLE MAPS
	$("#gmap").gMap({ markers: [{ 
		latitude: gmap_lat,
		longitude: gmap_lon,
		html: nomeLocale,
		popup: false }],
		zoom: 16 
	});


	$('#tweetticker1').tweetTicker({
		username: twitter
	});

	$('#chiudi_wall').click(function(){
		$('#box_wall').hide('slow');
	});

	$('#chiudi_contacts').click(function(){
		$('#box_contacts').hide('slow');
	});

	$('#chiudi_work').click(function(){
		$('#box_work').hide('slow');
	});

	$('#chiudi_events').click(function(){
		$('#box_events').hide('slow');
	});
	$('#chiudi_location').click(function(){
		$('#box_location').hide('slow');
	});
	$('#chiudi_staff').click(function(){
		$('#box_staff').hide('slow');
	});
	$('#chiudi_restaurant').click(function(){
		$('#box_restaurant').hide('slow');
	});


	$('#box_work').hide();
	$('#box_wall').hide();
	$('#box_location').hide();
	$('#box_events').hide();
	$('#box_staff').hide();
	$('#box_restaurant').hide();
	$('#box_contacts').hide();
	var w=setTimeout(function(){$('#box_events').show('slow');},3000);

	$("#ajax-contact-form").submit(function(){
		var str = $(this).serialize();
		$.ajax({
			type: "POST",
			url: "contact.php",
			data: str,
			success: function(msg){
				$("#note").ajaxComplete(function(event, request, settings){

					if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
					{
						result = '<div class="notification_ok" style="font-size:12px;color:#FFF;text-indent:2em;">Messaggio inviato. Grazie!</div>';
						alert('Messaggio inviato. Grazie.')

						//$("#fields").hide();
					}
					else
					{
						result = msg;
					}
					$('#note').html(result);
				});
			}
		});
		return false;
	});

	$("#ajax-contact-form2").submit(function(){
		var str = $(this).serialize();
		$.ajax({
			type: "POST",
			url: "contact2.php",
			data: str,
			success: function(msg){
				$("#note2").ajaxComplete(function(event, request, settings){

					if(msg == 'OK') // Message Sent? Show the 'Thank You' message and hide the form
					{
						result = '<div class="notification_ok" style="font-size:12px;color:#FFF;text-indent:2em;">Messaggio inviato. Grazie!</div>';
						alert('Messaggio inviato. Grazie.')

						//$("#fields").hide();
					}
					else
					{
						result = msg;
					}
					$('#note2').html(result);
				});
			}
		});
		return false;
	});
		
	// audio control
	$("#play-bt").click(function(){
		$("#audio-player")[0].play();
		//$("#message").text("Music started");
	});

	$("#pause-bt").click(function(){
		$("#audio-player")[0].pause();
		//$("#message").text("Music paused");
	});

	$("#stop-bt").click(function(){
		$("#audio-player")[0].pause();
		$("#audio-player")[0].currentTime = 0;
	});

	if(navigator.platform == 'iPad' || navigator.platform == 'iPhone' || navigator.platform == 'iPod'){
		window.onscroll = function() {
			document.getElementById('footer').style.top = (window.pageYOffset + window.innerHeight - 48) + 'px';
		};
	};




});


/*    $(window).bind("load", function() {
    	$("div#album1").slideView()
    	$("div#album2").slideView()
	});
*/
function openBox(box) {
	$('#box_work').hide('slow');
	$('#box_contacts').hide('slow');
	$('#box_events').hide('slow');
	$('#box_location').hide('slow');
	$('#box_staff').hide('slow');
	$('#box_wall').hide('slow');
	$('#box_restaurant').hide('slow');
    var d1=setTimeout(function(){$(box).show('slow');},800);
};

function PrimoPiano(elem) {
	$("#uno").css("z-index","5000");
	$("#due").css("z-index","5000");
	$("#tre").css("z-index","5000");
	$("#quattro").css("z-index","5000");
	$("#cinque").css("z-index","5000");
	$("#sei").css("z-index","5000");
	$("#sette").css("z-index","5000");
	$(elem).css("z-index","100000");
};


