$(document).ready(function()
{
	$('#tabs').tabs();
	
	$('input[name="email_address"]').blur(function() { if(this.value == '') this.value = 'Type your email address here'; });
	$('input[name="email_address"]').focus(function() { if(this.value == 'Type your email address here') this.value = ''; });

	

});

// cufon text replacement
Cufon.replace('.post h1, #options h2');
