var searchText;
searchText = "Search by address or suburb";

$(document).ready(function(){
	$("#menuSearchBar").css(
		{'background-color' : '#fafafa',
  		'color' : '#999' }
	);
	
	$("#menuSearchBar").focusin(function(){
		if ($(this).val() == searchText) {
			$(this).val('');
		}
		$(this).css(
			{'background-color' : '#FFF',
      		'color' : '#000' }
		);
	});
	
	$("#menuSearchBar").focusout(function(){
		if ($(this).val() == '') {
			$(this).val(searchText);
		}
		$(this).css(
			{'background-color' : '#fafafa',
      		'color' : '#999' }
		);
	});
});
