$(document).ready(function() {
	var input = '.tx-indexedsearch-searchbox-sword.sword';
	var text = $(input).attr('value');
	var searchStr;
	$(input).focusin(function() {
		$(this).attr('value','');
		$(this).addClass('clicked');
		searchStr = ($(this).attr('value') != '') ? $(this).attr('value') : text;
	});
	
	$(input).focusout(function() {
		if ($(this).attr('value') == '')
		{
			$(this).removeClass('clicked');
			$(this).attr('value',searchStr);
		}
	});
});
