// JavaScript Document
// file di configurazione script per mediatrading






//shadow box
Shadowbox.init({
    language:   "it",
    players:  ['flv', 'html', 'iframe', 'img', 'qt', 'swf', 'wmp'],
	enableKeys:			true,
	continuous:			true
 
   
});

$(document).ready(function()
{
//attiva  pngfix 
$(document).pngFix();



	//apre i link in esterno in base all'url
	$("a.ext").click(function() {  
		window.open(this.href,'','');
		return false;
	}); 
	
	


// overlay
$(function() { 
    $("#zoom").overlay({effect: 'apple'});
});


//duplichiamo le immagini
$("#bg_overlay").html($("#hide1").html());
$("#fotocnt").html($("#hide2").html());




//columnize
	$('#testo').columnize({
			columns: 2, 
		lastNeverTallest:true 
						});
	
	
});

