/*
$(document).load(function() {
    $('#photo').cycle({
		fx:'fade',
		speed: 3000,
		timeout: 5000
	  });
});
*/

function addEvent(element, type, expression, bubbling)
{
	bubbling = bubbling || false;
 
	if(window.addEventListener)	{ // Standard
		element.addEventListener(type, expression, bubbling);
		return true;
	} else if(window.attachEvent) { // IE
		element.attachEvent('on' + type, expression);
		return true;
	} else return false;
}

// tolto momentaneamente onresize="document.location.href=document.location.href;"
// dalla pagina home.html
//

addEvent(window, 'load', function() {
  $('#photo').cycle({
		fx:'fade',
		speed: 3000,
		timeout: 5000
	  });
});




