/* MENU */
$(function(){
	$("#menu li").hover(
		function() {
			$(this).addClass('hover');
		},
		function() {
			$(this).removeClass('hover');
		}
	);
});

/*effetto sul cerca*/
$(document).ready(function() {
    $('#cerca input[type="text"]').addClass("idleField");
	$('#cerca input[type="text"]').focus(function() {
		$(this).removeClass("idleField").addClass("focusField");
        if (this.value == this.defaultValue){
        	this.value = '';
    	}
        if(this.value != this.defaultValue){
	    	this.select();
        }
    });
    $('#cerca input[type="text"]').blur(function() {
        if (this.value == ''){
			$(this).removeClass("focusField").addClass("idleField");
        	this.value = (this.defaultValue ? this.defaultValue : '');
    	}
    });
});

/*togli ultimo tratteggio ai commenti*/
$(function(){
	$('#commenti .alignright:last').css('background','none');
});

