// JavaScript Document

$(document).ready(function () {

	$(".main_banner").hide();
	$(".mainMenu_container").hide();
	$(".box_1").hide();
	$(".box_2").hide();
	$(".box_3").hide();
	$(".footer").hide();
	$(".content").hide();
	// Once the dom loads...     
         $(function(){             
            $('.main_banner .info h2') 
                .epiclock( {mode: EC_COUNTUP, target: 'November 12, 1962 00:00:00', format:'{Concessionario a Roma da <br />}Q{ anni, } K{ giorni, } x{ ore, } i{ minuti e } s{ secondi }'} )      // We define the clock...   
                .clocks(); // Then start the manager. 
         }); 
         


});

function startComp() {

	$(".main_banner").fadeIn("slow", function(){
							
							createSlide();
							$(".mainMenu_container").fadeIn(1000, function (){
												$(".content").show();	
												 $(".box_1").slideDown(1000, function (){
																						 
																						  $(".box_2").slideDown(1000, function (){
																						  
																																	$(".box_3").slideDown(1000, function (){
																						 
																																											 $(".footer").fadeIn(1000, function(){
																																																				//createSlide();
																																																				});
																																						 
																																										});
																																});
																						  });
												 
												 
												 });
							 });

};

function startCompInternal() {
	
	$(".main_banner").fadeIn("slow", function(){
							
							//createSlide();
							$(".mainMenu_container").fadeIn(1000, function (){
							
												 $(".content").slideDown(1000, function (){
																						 
																						  
																						 
																						 					 $(".footer").fadeIn(1000, function(){
																																				//createSlide();
																																				});
																						 
																						 				});
																						  
												 
												 
												 });
							 });

};