// CLEAR INPUT FIELDS
$(document).ready(function() {
	$("input:text, input:password").focus(function() {
		if($(this).attr("title") != '' && $(this).attr("value") == $(this).attr("title")){
			$(this).attr("value","");
			if($(this).attr("id") == 'search') $(this).removeClass('start');
		}
	});
	$("input:text").blur(function() {
		if($(this).attr("value") == '' && $(this).attr("title") != ''){
			$(this).attr("value",$(this).attr("title"));
			if($(this).attr("id") == 'search') $(this).addClass('start');
		}
	});
	$("input:password").blur(function() {
		if($(this).attr("value") == '' && $(this).attr("title") != ''){
			$(this).attr("value",$(this).attr("title"));
		}
	});
	$("#frmPoll input").click(function() {
		$("#frmPoll").submit();										  
	});
	//if($("input#search")) $("input#search").focus();
});


