// JavaScript Document


$(document).ready(function() {
	$("#searchbar").attr("value", "Search CEA");

	var text = "Search CEA";

	$("#searchbar").focus(function() {
		$(this).addClass("active");
		if($(this).attr("value") == text) $(this).attr("value", "");
	});

	$("#searchbar").blur(function() {
		$(this).removeClass("active");
		if($(this).attr("value") == "") $(this).attr("value", text);
	});
});
