$(document).ready(function(){
	// set up lavalamp
	$('#tabs').lavalamp();

	// "hire me" img replacement
	$("#hire-link").hover(
		function () {
			$('#hire-glow').stop().animate({
				opacity: 1
			}, 200)
		}, function () {
			$('#hire-glow').stop().animate({
				opacity: 0
			}, 200)
		}
	);

	
	// de-obscucate email addresses
	$("a[href^='mailto:']").simplespamblock();
	$('.nospam').remove();
	
	/*
	// quote box
	var phrases = new Array(
	    "David Baumgold: web developer, college student, and code monkey.",
	    "The internet is a wild place. I'm here to tame it.",
	    "The leprechauns in my head tell me to burn things!",
	    "Luke, I am your father's brother's wife's nephew's college roommate.",
	    "There's no \"I\" in team. But there is an \"m\" and an \"e\"!",
	    "In my spare time, I rather enjoy full-contact origami and zero-gravity skydiving.",
	    "If you're not living on the edge, you're taking up too much space."
	    //"If winners never quit and quitters never win, what about quitting while you're ahead?"
	);
	function writeQuote(phrases) {
	    $('#quote-box').text(phrases[Math.floor(Math.random()*phrases.length)]);
	}
	writeQuote(phrases);
	*/
});