//////////////////////////////////////////////////////////////////////////
function hinterNet() {
	var rand = Math.floor(Math.random()*20);

	// Pull a site in
	if(rand == 17) {
		$('#header').hide();
		$('#content').hide();
		$('#hinter').show();
		$('#loader-wrap').hide();
		
		var shockArray = new Array();
		shockArray[0] = 'http://www.rotten.com';
		shockArray[1] = 'http://trololololololololololo.com/';
		shockArray[2] = 'http://www.tnteventsinc.com/';
		shockArray[3] = 'http://www.americanbeautybordercollies.com/';
		shockArray[4] = 'http://www.wateronwheels.com/';
		shockArray[5] = 'http://www.anachrome.com/';
		shockArray[6] = 'http://www.manidoo.com/';
		shockArray[7] = 'http://www.wmgh.com/';
		shockArray[8] = 'http://www.drivingskills.on.ca/';
		shockArray[9] = 'http://www.allstarhorsefarm.com/';
		shockArray[10] = 'http://www.photographertoronto.com/';
		shockArray[11] = 'http://mercedesrestaurants.com/';
		shockArray[12] = 'http://www.mrbottles.com/';
		
		var x = Math.floor(Math.random()*shockArray.length);
		
		$('#hinter').html('<iframe src="'+shockArray[x]+'" width="100%" height="100%"></iframe>');
		
		setTimeout('hinterHide()',3000);
	}
	// Pull a video clip in
	if(rand == 19) {

	}
	
	// Create a glitch
	if(rand == 1) {
		$('#header').hide();
		$('#content').hide();
		$('#hinter').show();
		$('#loader-wrap').hide();
		
		$('#hinter').html('<canvas id="glitch" data-processing-sources="/processing/glitch.pde"></canvas>');
		setTimeout('hinterHide()',3000);
	}
}
//////////////////////////////////////////////////////////////////////////
function hinterHide() {
	$('#hinter').hide();
	$('#hinter').empty();
	$('#header').show();
	$('#content').show();
}
//////////////////////////////////////////////////////////////////////////
$(document).ready(function() {
	hinterNet();
});
//////////////////////////////////////////////////////////////////////////
