/*
requires jquery
*/
jQuery('input#SearchBox').focus(function() {
	if (jQuery(this).attr('value') == 'Search hopepark...') {
		jQuery(this).attr('value','').addClass('active');
	}
});
jQuery('input#SearchBox').blur(function() {
	if (jQuery(this).attr('value') == '') {
		jQuery(this).attr('value','Search hopepark...').removeClass('active');
	}
});

if (jQuery('input#SearchBox').attr('value') == '') {
	jQuery('input#SearchBox').attr('value','Search hopepark...').removeClass('active');
}

