function chiudiSupahbox() {
	$("#zoom, #chiudi").hide();
	$("#zoom table td.mid").empty();
	$("#blow").animate({opacity:0},400,function(){
		$("#supahbox").hide();
	});
}


function supahbox(){
	$("a.supahbox").click(function(){
		var url = $(this).attr("href");
		var title = $(this).attr("title");

		altezzaWindow();
		
		if ($(this).attr("rel") == "img") {
			$("#zoom table td.mid").empty().append("<img src='"+url+"' alt='"+$(this).find("img").attr("alt")+"' /><br />" + title);
		} else {
			$("#zoom table td.mid").empty().append("<object width='684' height='385'><param name='movie' value='"+url+"'></param><param name='wmode' value='transparent'></param><embed src='"+url+"' type='application/x-shockwave-flash' wmode='transparent' width='684' height='385'></embed></object>");
		}
		// css
		$("#supahbox").show();
		$("#blow").css({width:myWidth, height:myHeight+20, background:"#000", position:"absolute", top:"0px", left:"0px", zIndex:10, opacity:0});
		$("#blow").animate({opacity:0.8},300,function(){																				
			$("#zoom, #chiudi").show();
		});
		
		return false;
	});
	
	//chiudi supahbox
	
	$("#chiudi a").click(function(){
		chiudiSupahbox();
		return false;
	});
		
}

window.onresize = function() {
	supahbox();
};

