$(window).load(function() {
	
	//$(".home div:nth-child(2)").addClass("first");	
	
	// Remove default form text on focus
	$(".emptytext").focus( function(){
		if ( $(this).val() == $(this)[0].defaultValue ) {
			$(this).val("");
		}
	});
	// Replace default form text on blur if input is empty
	$(".emptytext").blur( function(){
		if ( $(this).val() == "" ) {
			$(this).val( $(this)[0].defaultValue );
		}
	});	
	
	$('span.post-meta-key').remove();
	$('ul.post-meta').each( function(){		
		var newurl = $(this).children().text();
		$(this).children().html('<a href="' + newurl + '" target="_blank">Sign Up</a>');
		var bob = 1;
	});
	
	$('li.photos img:even').addClass('even');
	
	$('div.post:even').addClass('even');
	
});
