$(document).ready(function(){
	$(".searchbar").attr("value", "Search...");
	var text = "Search...";
	$(".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);
	});
	
	
	$(".txt_login").attr("value", "User Name");
	var txt_login = "User Name";
	$(".txt_login").focus(function() {
		//$(this).addClass("active");
		if($(this).attr("value") == txt_login) $(this).attr("value", "");
	});
	$(".txt_login").blur(function() {
		//$(this).removeClass("active");
		if($(this).attr("value") == "") $(this).attr("value", txt_login);
	});
	
	$(".txt_password").attr("value", "Password");
	var txt_password = "Password";
	$(".txt_password").focus(function() {
		//$(this).addClass("active");
		if($(this).attr("value") == txt_password) $(this).attr("value", "");
	});
	$(".txt_password").blur(function() {
		//$(this).removeClass("active");
		if($(this).attr("value") == "") $(this).attr("value", txt_password);
	});
});








