/*
 * LF 22/07/2009 14.33
 * Script per la visualizzazione libero movimento img
 *
 */

/*
 * Basato su JQuery
 */
 
 
 $(document).ready( function(){ 

	
	$(".col img.up[title]").tooltip({ 
 
        tip: 'div.colTip', 
 
        // tweak the position 
        position: "top center",         
		offset: [0,0],
        relative: true
    }); 
	
	$(".col img.down[title]").tooltip({ 
 
        tip: 'div.colTip', 
 
        // tweak the position 
        position: "bottom center",         
		offset: [0,0],
        relative: true
    });
	
	$("#cCollectionBigImg").imagetool( {
   		viewportWidth: 500
   		,viewportHeight: 640 
		,topX: 115
		,topY: 20
		,bottomX: 615
		,bottomY:660
		,loading: "css/cIconLoad.gif"
	});
	
	
	
 } ); 

