var FullscreenrOptions = {  
				width: 1154,  // Larghezza Immagine originale
				height: 768, // ALtezza Immagine originale
				bgID: '#bgimg'  // Contenitore dell'immagine
			};
jQuery.fn.fullscreenr(FullscreenrOptions);

$(document).ready(function() {
 	$(".rollover img").hover(
		function() {
			this.src = this.src.replace("_out", "_over");
		},
		function() {
			this.src = this.src.replace("_over", "_out");
		}
	);
}); 


