jQuery(document).ready(function(){
	jQuery("#content_rassegna .listrowbig").css("opacity", 0.85);
	//jQuery("#content .listrowbig .right .scroll_content").css("opacity", 0.85);

	// this adds hover to full opacity:
	jQuery("#content_rassegna .listrowbig").hover(
		// hover state
		function() {
			jQuery(this).css({opacity: 1.0});
			//jQuery(this).find(".right .scroll_content").css({opacity: 1.0});
		},
		// back to off
		function() {
			jQuery(this).css({opacity: 0.85});
			//jQuery(this).find(".right .scroll_content").css({opacity: 0.85});
		}
	);
});