$(document).ready(function(){

	var searchBoxes = $(".forminput");

	searchBoxes.each(function(){
	if($(this).attr("value") == ""){
		$(this).attr("value", $(this).attr("title"));
		$(this).css("color","#7F7777");
		}
	if($(this).attr("value") == $(this).attr("title")){
		$(this).css("color","#7F7777");
	}
	});

	// Show/hide default text if needed
	searchBoxes.focus(function(){
		if($(this).attr("value") == $(this).attr("title")){
		$(this).attr("value", "");
		$(this).css("color","#1F1D1D");
		$(this).addClass("active");
		}
	});
	searchBoxes.blur(function(){
		if($(this).attr("value") == "") {
		$(this).attr("value", $(this).attr("title"))
		$(this).css("color","#7F7777");
		$(this).removeClass("active");
		};
	});
});
