/* Initialization for all forms */
$(document).ready(function(){
	$('#post_header #search-form #edit-submit').val('Go');	
	
	$('#post_header #block-block-14 input[type=text]').defaultvalue('Enter email address');
	$('#post_header #block-block-14 input[type=submit]').click( function() {
		if ($('#post_header #block-block-14 input[type=text]').val() == 'Enter email address') {
			$('#post_header #block-block-14 input[type=text]').val('');
		}
	});
	
	$('#post_header #search-form div[id^=edit-keys]').find('input.form-text').defaultvalue('Search for...');
	$('#post_header #search-form .form-submit').click( function() {
		if ($('#post_header #search-form div[id^=edit-keys]').find('input.form-text').val() == 'Search for...') {
			$('#post_header #search-form div[id^=edit-keys]').find('input.form-text').val('');
		}
	});
	
});
