// JavaScript Document
$(document).ready(function() {
	$("#search").focus(function() {
		if($(this).val() == 'Search') {
			$(this).val('');
		}
	});
	$("#search").blur(function() {	
		if($(this).val().length < 1) {
			$(this).val('Search');
		}
	});
	$("#newsletter-textbox").focus(function() {
		if($(this).val() == 'Your Email Address') {
			$(this).val('');
		}
	});
	$("#newsletter-textbox").blur(function() {
		if($(this).val().length < 1) {										   
			$(this).val('Your Email Address');
		}
	});
});