$(document).ready(function(){
	// Variable number is the number of
	// rotating images to sort through.
	//		var total = 4;
	//		var random = 0;
	//		while(random === 0){
	//		random = Math.floor(Math.random()*(total+1));}
	//		$("#head").css("background-image","url(http://www.toddkuffner.com/images/banner"+random+".jpg)");
		//EMAIL
		var name = 'toddmakesnoise';
		var domain = 'gmail';
		$('.email').html('<a href="mailto:'+name+'@'+domain+'.com">'+name+'@'+domain+'.com</a>');
	});
	
$(document).ready(function(){
	$(".excerpt").hide();
	$('.headline').click(function(){
		$(this).toggleClass('gray').siblings().toggle('blind');
	});
	$('.headline > p').hover(function(){
		$(this).effect("highlight",{color:"#144896"},400);
	});
});

