(function($){
	$(function(){
		$('div.preview a').bind("click",function(){
			imgPreloader = new Image();
      
			url = $(this).attr("href");
			// once image is preloaded, resize image container
			imgPreloader.onload = function(){
				$('div#colonna_doppia .sfondo_img img.big').attr("src",url);
				width = Number(imgPreloader.width)+6;
				height = Number(imgPreloader.height)+6;
				style = "width:"+width+"px;height:"+height+"px";
				$('div#colonna_doppia .sfondo_img').attr("style",style);
			}
      
			imgPreloader.src = url;
			
			$('div.preview a').removeClass("active");
			$(this).addClass("active");
		  return false;
		});
	})
})(jQuery);