$(function(){
	//init	 
	$(".linkExt").attr("target", "_blank");	
	
	$("#btt_programmazione").attr("src", "images/btt_programmazione_over.jpg");
	$("#btt_programmazione_tab").attr("src", "images/btt_programmazione_tab.jpg");
	
	var downState = "prog";
	
	//menu
	$("#btt_programmazione").mouseover(function(){
		$(this).attr("src", "images/btt_programmazione_over.jpg");
	}).mouseout(function(){
		if($("#inside_progr").is(":hidden"))	$(this).attr("src", "images/btt_programmazione.jpg");
	}).click(function(e){
		e.preventDefault();
		backToProg();
		downState = "prog";
	});
	
	
	$("#btt_cinemadigitale, #btt_sideDigital").mouseover(function(){
		$("#btt_cinemadigitale").attr("src", "images/btt_cinemadigitale_over.jpg");
	}).mouseout(function(){
		if(downState != "digital")	$("#btt_cinemadigitale").attr("src", "images/btt_cinemadigitale.jpg");
	}).click(function(e){
		e.preventDefault();
		if(downState != "digital")	changePage("#btt_cinemadigitale", "images/btt_cinemadigitale_over.jpg", "cinemadigitale.php");
		downState = "digital";
	});
	
	
	$("#btt_prezziecard").mouseover(function(){
		$(this).attr("src", "images/btt_prezziecard_over.jpg");
	}).mouseout(function(){
		if(downState != "prezzi")	$(this).attr("src", "images/btt_prezziecard.jpg");
	}).click(function(e){
		e.preventDefault();
		if(downState != "prezzi")	changePage(this, "images/btt_prezziecard_over.jpg", "prezzi.php");
		downState = "prezzi";
	});
	
	
	$("#btt_dovesiamo").mouseover(function(){
		$(this).attr("src", "images/btt_dovesiamo_over.jpg");
	}).mouseout(function(){
		if(downState != "dove")	$(this).attr("src", "images/btt_dovesiamo.jpg");
	}).click(function(e){
		e.preventDefault();
		if(downState != "dove")	changePage(this, "images/btt_dovesiamo_over.jpg", "dovesiamo.php");
		downState = "dove";
	});
	
	
	$("#btt_infocinema").mouseover(function(){
		$(this).attr("src", "images/btt_infocinema_over.jpg");
	}).mouseout(function(){
		if(downState != "info")	$(this).attr("src", "images/btt_infocinema.jpg");
	}).click(function(e){
		e.preventDefault();
		if(downState != "info")	changePage(this, "images/btt_infocinema_over.jpg", "infocinema.php");
		downState = "info";
	});
	
	
	$("#btt_photogallery").mouseover(function(){
		$(this).attr("src", "images/btt_photogallery_over.jpg");
	}).mouseout(function(){
		if(downState != "gallery")	$(this).attr("src", "images/btt_photogallery.jpg");
	}).click(function(e){
		e.preventDefault();
		if(downState != "gallery")	changePage(this, "images/btt_photogallery_over.jpg", "photogallery.php");
		downState = "gallery";
	});
	
	
	$("#btt_contattaci").mouseover(function(){
		$(this).attr("src", "images/btt_contattaci_over.jpg");
	}).mouseout(function(){
		if(downState != "contact")	$(this).attr("src", "images/btt_contattaci.jpg");
	}).click(function(e){
		e.preventDefault();
		if(downState != "contact")	changePage(this, "images/btt_contattaci_over.jpg", "contattaci.php");
		downState = "contact";
	});
	
	
	//tab
	$("#btt_prog_tab, #btt_prox_tab").mouseover(function() {$(this).css('cursor','pointer');});	
	$("#btt_programmazione_tab").click(function(e){
		e.preventDefault();
		backToProg();
		downState = "prog";
	});
	$("#btt_prossimamente_tab").click(function(e){
		e.preventDefault();
		if(downState != "prox")	changePage(this, "images/btt_prossimamente_tab.jpg", "prossimamente.php");
		downState = "prox";
	});
	
	
	//sideBox
	$("#btt_eventi1, #btt_eventi2").click(function(e){
		e.preventDefault();
		if(downState != "eventi")	changePage("", "", "eventi.php");
		downState = "eventi";
	});
	
	$("#btt_rassegne1, #btt_rassegne2").click(function(e){
		e.preventDefault();
		if(downState != "rassegne")	changePage("", "", "rassegne.php");
		downState = "rassegne";
	});
	
	
	
	
	function changePage(btt_on, img_on, page)	{
		switchOffMenu();
		$("#inside_progr").hide();
		
		$(btt_on).attr("src", img_on);
		
		replacer = "<p style=\"position:relative; top:220px;\" align=\"center\"><img src=\"images/loader.gif\"/></p>";
		$("#inside_cont").html(replacer);
		$("#inside_cont").load(page, {inc: "1"}, function (e) {
			$(this).children().hide();
			$(this).children().fadeIn();
		});
		
		
	}
	
	function backToProg()	{
		switchOffMenu();
		$("#btt_programmazione_tab").attr("src", "images/btt_programmazione_tab.jpg");
		$("#btt_programmazione").attr("src", "images/btt_programmazione_over.jpg");
		$("#inside_cont").html("");
		$("#inside_progr").fadeIn();
	}
	
	function switchOffMenu()	{
		$("#btt_programmazione").attr("src", "images/btt_programmazione.jpg");
		$("#btt_cinemadigitale").attr("src", "images/btt_cinemadigitale.jpg");
		$("#btt_prezziecard").attr("src", "images/btt_prezziecard.jpg");
		$("#btt_dovesiamo").attr("src", "images/btt_dovesiamo.jpg");
		$("#btt_infocinema").attr("src", "images/btt_infocinema.jpg");
		$("#btt_photogallery").attr("src", "images/btt_photogallery.jpg");
		$("#btt_contattaci").attr("src", "images/btt_contattaci.jpg");
		
		$("#btt_programmazione_tab").attr("src", "images/btt_programmazione_tab_off.jpg");
		$("#btt_prossimamente_tab").attr("src", "images/btt_prossimamente_tab_off.jpg");
	}
	
	
	
	
})


function OpenGMIV(theURL,winName,features) {window.open(theURL,winName,features);}
