/*  Sitewide Javascript includes, added just before </head>.  */

jQuery(document).ready( function($) {
	jQuery('.widget_mailchimpsf_widget #mc_signup_form input[type="text"]').focus(function() {
	if (this.value == 'Enter your Email Address')
		this.value = '';
	}).blur(function() {
	if ($.trim(this.value) == '')
		this.value = ('Enter your Email Address');
	}).val('Enter your Email Address');
});


// Add option to /calendar, enable jQuery UI Theme (included in header-child.php)
var extra_calendar_options = {theme: true};

