// JavaScript Document
// Logo slideshow
var pics = new Array();
pics = [
	{source:'http://www.albertiangelo.com/images/miniature/SNC00095.jpg', option2:2, target:'_blank', title:'Alberti Angelo', href:"http://www.albertiangelo.com"},		
	{source:'http://www.albertiangelo.com/images/miniature/SNC00098.jpg', option2:2, target:'_blank', title:'Alberti Angelo', href:"http://www.albertiangelo.com"},			
	{source:'http://www.albertiangelo.com/images/miniature/prodotti.jpg', option2:2, target:'_blank', title:'Alberti Angelo', href:"http://www.albertiangelo.com"},		
	{source:'http://www.albertiangelo.com/images/miniature/POMPE-JOLLYDET.jpg', option2:2, target:'_blank', title:'Alberti Angelo', href:"http://www.albertiangelo.com"},
	{source:'http://www.albertiangelo.com/images/miniature/RUB001.jpg', option2:2, target:'_blank', title:'Alberti Angelo', href:"http://www.albertiangelo.com"},	
	{source:'http://www.albertiangelo.com/images/miniature/TP59001.jpg', option2:2, target:'_blank', title:'Alberti Angelo', href:"http://www.albertiangelo.com"},
	{source:'http://www.albertiangelo.com/images/miniature/TP60001.jpg', option2:2, target:'_blank', title:'Alberti Angelo', href:"http://www.albertiangelo.com"},
	{source:'http://www.albertiangelo.com/images/miniature/TP63001.jpg', option2:2, target:'_blank', title:'Alberti Angelo', href:"http://www.albertiangelo.com"},			
	{source:'http://www.albertiangelo.com/images/miniature/VA70016.jpg', option2:2, target:'_blank', title:'Alberti Angelo', href:"http://www.albertiangelo.com"},
	{source:'http://www.albertiangelo.com/images/miniature/VA70101.jpg', option2:2, target:'_blank', title:'Alberti Angelo', href:"http://www.albertiangelo.com"},	
	{source:'http://www.albertiangelo.com/images/miniature/esposiz-prodotti.jpg', option2:2, target:'_blank', title:'Alberti Angelo', href:"http://www.albertiangelo.com"}	
];
 
var opts = new Object();
opts = {
	width:200,
	height:150,
	timeout:3,
	delay: 6,
	mfgcolor: '#00a0ff',
	mopacity: 0.5,
	fadein:true,
	autoplay:true,
	name:'test',
	data: pics
};
 
if(typeof $=='undefined') {function $(v) {return(document.getElementById(v));}}
window.onload = function () { 
	transm.add($("wrapper"),opts);
};
 
