$(document).ready(function() {
	
	/*$(' #feature ').hide();*/
	$(' #events ').hide();
	$(' #prologues ').hide();
	$(' #sponser-us ').hide();
	$(' #prototype ').css({ background:"#202020" });
	
	/*$('#side-menu').animate({ opacity: "0.9"}, 2000)
	.animate({opacity: "0.1"}, 2000)
	.animate({opacity: "0.9"}, 2000)
	.animate({opacity: "1"}, 2000)
	.dequeue();
	$('#side-menu').queue(arguments.callee);*/
	
	$(' #prototype ').click(function() {
		$(' #events ').hide();
		$(' #prologues ').hide();
		$(' #prototype ').css({ background:"#202020" });
		$(' #event ').css({ background:"#333" });
		$(' #prologue ').css({ background:"#333" });
		$(' #feature ').show();
		
		return false
	});
	
	
	$(' #event ').click(function() {
		$(' #feature ').hide();
		$(' #prologues ').hide();
		$(' #event ').css({ background:"#202020" });
		$(' #prototype ').css({ background:"#333" });
		$(' #prologue ').css({ background:"#333" });
		$(' #events ').show();
		
		return false
	});
	
	$(' #prologue ').click(function() {
		$(' #events ').hide();
		$(' #feature ').hide();		
		$(' #prologue ').css({ background:"#202020" });
		$(' #event ').css({ background:"#333" });
		$(' #prototype ').css({ background:"#333" });
		$(' #prologues ').show();
		
		return false
	});
	
	$(' #mail ').click(function() {
		$(' #sponser-us ').show();
		
		return false
	});
	
	
	$(' #close ').click(function() {
		$(' #sponser-us ').hide();
		
		return false
	});
});	
