$(document).ready(function(){
	$('#tpl-search-field').focus(function() {
		if ( $(this).attr('hasChanged') == '0' ) {
			$(this).attr('value','');
		} else {
			
		};
	});
	$('#tpl-search-field').blur(function() {
		if ( $(this).attr('value') == '' ) {
			$(this).attr('value',$(this).attr('title'));
			$(this).attr('hasChanged','0');
		} else {
			$(this).attr('hasChanged','1');
		};
	});
 });
