$(document).ready(function() {
        isIE6 = navigator.userAgent.toLowerCase().indexOf('msie 6') != -1;
	if (!isIE6) {
            $('div.articolo-elenco').hover(function() {
		if (!$(this).hasClass('delete'))
                          $(this).css('background-color', '#FAFAFA');
                }, function() {
                        if (!$(this).hasClass('delete'))
                          $(this).css('background', 'none');
                });
                $('div.this_month-elenco').hover(function() {
                        $(this).css('background-color', '#FAFAFA');
                }, function() {
                        $(this).css('background', 'none');
                });
        }
        
});
