$(document).ready(function(){

	// BUTTON ROLLOVERS
	$(function() {
		$('img[data-hover]').hover(function() {
			$(this).attr('tmp', $(this).attr('src')).attr('src', $(this).attr('data-hover')).attr('data-hover', $(this).attr('tmp')).removeAttr('tmp');
		}).each(function() {
			$('<img />').attr('src', $(this).attr('data-hover'));
		});;
	});
	
	// HEADER IMAGE
	var happypics = [
					 'hpic_shuffle2011.jpg',
					 'hpic_lilmeatwad.gif',
					 'hpic_pennermania.jpg',
					 'hpic_lovesymbol.jpg',
					 'hpic_celebrate.jpg',
					 'hpic_chocolatebar.jpg',
					 'hpic_luke.jpg',
					 'hpic_konasunset.jpg'
					];
	$('#happypic').css({'background-image': 'url(/see/pix/' + happypics[Math.floor(Math.random() * happypics.length)] + ')'});
	
	// GO ELSEWHERE LINKS
	var stElsewheres = [
						'http://icanhazcheezburger.com/',
						'http://huffingtonpost.com/',
						'http://animalswithstuffedanimals.com/',
						'http://www.unnecessaryquotes.com/',
						'http://henryclaypeople.com/',
						'http://knowyourmeme.com/',
						'http://nba.com/',
						'http://whoisarcadefire.tumblr.com/',
						'http://www.brotipshq.com/',
						'http://w4missedconnections.wordpress.com/',
						'http://ourvaluedcustomers.tumblr.com/',
						'http://probablyinteractive.com/url-hunter#',
						'http://adultswim.com',
						'http://worldsbiggestpacman.com/',
						'http://tomhaverfoods.com/',
						'http://crapsouvenirs.com/',
						'http://anti-joke.com/',
						'http://mountrushmorephotoshopped.tumblr.com/',
						'http://llamafont.com/llamafied/b1p',
						'http://manbabies.com/',
						'http://coolmaterial.com/roundup/if-historical-events-had-facebook-statuses/'
					   ];
	var elsewhereMenuLink = $('#stElsewhere');
	elsewhereMenuLink.attr('href', stElsewheres[Math.floor(Math.random() * stElsewheres.length)]);
	var elsewhereLinks = $('.stElsewhere');
	elsewhereLinks.click(function(event){
		event.preventDefault();
		window.open($(this).attr('href'));
	});
																	   
	// NEXT
	
});
