var exLoc = 'Ex: 89134 or Las Vegas, NV or Nevada';
	
$(document).ready(function(){
	$('input[name="location"]').focus(function(){
		if($(this).val() == exLoc) {
			$(this).val('');
			$(this).css('color','#000000');
			$(this).css('fontSize','14px');
			$(this).css('paddingTop','1px');
			$(this).css('paddingBottom','1px');
		}
	});
	$('input[name="location"]').blur(function(){
		if($(this).val() == '') {
			$(this).val(exLoc);
			$(this).css('color','#999999');
			$(this).css('fontSize','10px');
			$(this).css('paddingTop','4px');
			$(this).css('paddingBottom','2px');
		}
	});
	$('input[name="location"]').submit(function(){
		if($(this).val() == exLoc) {
			$(this).val('');
			$(this).css('color','#000000');
			$(this).css('fontSize','14px');
			$(this).css('paddingTop','1px');
			$(this).css('paddingBottom','1px');
		}
	});
	$('input[name="location"][value=""]').css('color','#999999');
	$('input[name="location"][value=""]').css('fontSize','10px');
	$('input[name="location"][value=""]').css('paddingTop','4px');
	$('input[name="location"][value=""]').css('paddingBottom','2px');
	$('input[name="location"][value=""]').val(exLoc);
	$('input[name="exloc"]').val(exLoc);	
});

	

