$(document).ready(function() {
	$("#searchfield").autocomplete('http://www.headbang.it/autocomplete.php', { minChars:3, matchSubset:1, matchContains:1, cacheLength:10, onItemSelect:selectItem, formatItem:formatItem, selectOnly:1 });
	$("#searchfield").click(function(){ if($(this).val() == 'Cerca su Headbang...'){ $(this).val(''); }	});
	$("#searchfield").blur(function(){ if($(this).val() == ''){ $(this).val('Cerca su Headbang...'); } });
	$("#password-temp").focus(function(){ 
		$("#password-temp").hide();
		$("#password").show();
		$("#password").focus();
	});
	$("#email").focus(function(){ 
		if($(this).val() == 'Email' && $(this).hasClass('empty')) {
			$(this).removeClass('empty');
			$(this).val('');
		}
	});
	$("A[href='#regolamento']").click(function(){
		new Boxy.load("http://www.headbang.it/regolamento.html", {title: 'Regolamento di Headbang.it'});
		return false;
	});
	$("A[href='#report_page']").click(function(){
		new Boxy.load("http://www.headbang.it/report_page.php?page=" + c_page + "", {title: 'Segnala a un moderatore'});
		return false;
	});
});