var Texts = new Array();

$(document).ready(function() {
	$("#bgc-search input[type='text']").val("Enter keyword and click go");
	$(".bgc-formnewsletterinput input, #bgc-search input[type='text']").addClass("blurred");
	$(".bgc-formnewsletterinput input, #bgc-search input[type='text']").each(function() {
		Texts[$(this).attr("id")] = $(this).val();
	});
	$(".bgc-formnewsletterinput input, #bgc-search input[type='text']").focus(function() {
		if($(this).val() == Texts[$(this).attr("id")]) {
			$(this).val("");
			$(this).addClass("focused");
			$(this).removeClass("blurred");
		}
	});
	$(".bgc-formnewsletterinput input, #bgc-search input[type='text']").blur(function() {
		if($(this).val() == "") {
			$(this).val(Texts[$(this).attr("id")]);
			$(this).addClass("blurred");
			$(this).removeClass("focused");
		}
	});
});
