
var randomLines = [
"What's good for the Syndicate is good for the Country.",
"Now with fewer than 14 grams of saturated fat!",
"[Propaganda Here]",
"Act now! Supplies limited!",
"Yes, it's a pun.",
"This site powered by: Caffeine<sup>TM</sup>"
];


$(function(){
	
	$('a').click(function(){
		$(this).blur();
	});
	
	
	$('#btnGallery').click(function(){
		$("#positionContainer").animate({ 
			left: "0px"}, 1000
		);
		$("#contentContainer").animate({ 
			height: $("#galleryContainer").height()
		}, 1000 );
		
		$('#nav a').removeClass('active');
		$('#btnGallery').addClass('active');
		
		$('#randomLine').html(randomLines[Math.floor(Math.random() * randomLines.length)]);
	});
	$('#btnAbout').click(function(){
		$("#positionContainer").animate({ 
			left: "-650px"}, 1000
		);
		$("#contentContainer").animate({
			height: $("#aboutContainer").height()
		}, 1000 );
		
		$('#nav a').removeClass('active');
		$('#btnAbout').addClass('active');
		
		$('#randomLine').html(randomLines[Math.floor(Math.random() * randomLines.length)]);
	});
	$('#btnContact').click(function(){
		$("#positionContainer").animate({ 
			left: "-1300px"}, 1000
		);
		$("#contentContainer").animate({
			height: $("#contactContainer").height()
		}, 1000 );
		
		$('#nav a').removeClass('active');
		$('#btnContact').addClass('active');
		
		$('#randomLine').html(randomLines[Math.floor(Math.random() * randomLines.length)]);
	});
	
	
	
	$('#randomLine').html(randomLines[Math.floor(Math.random() * randomLines.length)]);
});
