$(function(){
	$('#tx_indexedsearch_sword, #tx_indexedsearch input, #tx_indexedsearch select').uniform();
	var defSW = $('#tx_indexedsearch_sword').val();
	$('#tx_indexedsearch_sword').focus(function(){
		if($(this).val()==defSW)
			$(this).val('');
	}).blur(function(){
		if($(this).val()=='')
			$(this).val(defSW);
	});
	$('#mc_searchform').submit(function(){
		if($('#tx_indexedsearch_sword').val()==defSW)
			$('#tx_indexedsearch_sword').val('');
	});
	
	$('#mailform input, #mailform select, #mailform checkbox, #mailform  textarea').uniform();
	
	//$(".input-text, #tx_indexedsearch_sword, .tx-indexedsearch-searchbox-sword").autocomplete({
	//	source: "./index.php?type=987",
	//	minLength: 5
	//});
});
