$(document).ready(function(){
	$('#content .menu').css('opacity', "0");
	setTimeout('showLogo()',2000);
});

function showLogo() {
  $('#title').css('visibility', "visible");
  $('#title').animate({opacity: '1'}, 500);
  
  setTimeout('hideLogo()',3000);
}

function hideLogo() {

  $('#title').animate({opacity: '0'}, 1000);
  
  $('#content .menu').css('opacity', "1");
  
  setTimeout('animateCurtain()',1000);
}

function animateCurtain() {

	$('#title').css('z-index', "0");

	$('#cur_left').animate({
		marginLeft: '-=269px'
	}, 2000, "easeOutBack");

	$('#cur_right').animate({
		marginLeft: '+=269px'
	}, 2000, "easeOutBack");

	setTimeout('elevateContent()',2000);

}

function elevateContent() {
	$('#content').css('z-index', "10");
	$('#content').css('border-color', "orange");
}
