jQuery(document).ready(function(){
	jQuery("#content_locali .listrowsmall").css("opacity", 0.85);

	// this adds hover to full opacity:
	jQuery("#content_locali .listrowsmall").hover(
		// hover state
		function() {
			jQuery(this).css({opacity: 1.0});
		},
		// back to off
		function() {
			jQuery(this).css({opacity: 0.85});
		}
	);
});
