// JavaScript Document

$(document).ready(function(){


// ### kleine Anweisungen						   

// -- overlay Transparenz Gauss
$(".overlay").css({ opacity: 0.5 });

// ### UI Slide ################################################


//$('#right_left').show('slide', {direction: 'right'}, 1500);

$(".overlay").hide();
$("img.bg").hide();
//$("img.bg").show('slide', {direction: 'down'}, 1200,

// Verzoegerung bis Animationen starten

setTimeout(
  function() 
  {

  $("img.bg").show('slide', {direction: 'right'}, 1200,
  
  
/*  */ 
  
		  function() {
			  $(".overlay").show('fade', {}, 5800)
		  }
  

 
   );

    //weitere Anweisungen
  }, 1200);  // Ende Verzoegerung

	


// ### next Script ################################################	

// ### next Script ################################################	

// ### next Script ################################################		
	
});
