window.addEvent('domready', function() 
{
	var gallery1 = new fadeGallery($$("div.gallery")[0], 
	{
		speed: 600,
		autoplay: true,
		duration: 4000
	});

	var gallery2 = new slideGallery($$("div.gallery")[1], 
	{
		steps: 2,
		speed: 600,
		transition: Fx.Transitions.Sine.easeInOut,
		mode: "line"
	});
	
	$('offpage1').addEvent('click', function(e)
	{
		e.stop();
		new MooDialog.Request('offpage1.html', null,
		{
			size: 
			{
				width: 560,
				height: 420
			}
		});			
	});	
	
	$('location').addEvent('click', function(e)
	{
		e.stop();
		new MooDialog.Request('location.html', null,
		{
			size: 
			{
				width: 410,
				height: 360
			}
		});			
	});	

});
