function autoFill(id, v){
	$(id).css({ color: "#000" }).attr({ value: v }).focus(function(){
		if($(this).val()==v){
			$(this).val("").css({ color: "#000" });
		}
	}).blur(function(){
		if($(this).val()==""){
			$(this).css({ color: "#000" }).val(v);
		}
	});
}

$(document).ready(function() {
	autoFill($("#looking_for"), "I am looking for...");	
	autoFill($("#comments"), "Comments... \n (Please remember to supply your name and contact email or number)");	
	autoFill($("#search_reference"), "Search by Catalogue Ref");
	autoFill($("#search_keyword"), "Search by Keyword");	
	autoFill($("#topsearch_keyword"), "Item Search");	
});


