// JavaScript Document

window.addEvent('domready', function(){
			$('GIV400exterior').addEvent('click', function(e) {
				e = new Event(e).stop();
			
				var url = "/gallery/GIV400exterior.html";
			
				/**
				 * The simple way for an Ajax request, use onRequest/onComplete/onFailure
				 * to do add your own Ajax depended code.
				 */
				new Ajax(url, {
					method: 'get',
					update: $('imglarge')
				}).request();
			});
		}); 
		
		
window.addEvent('domready', function(){
			$('GIV400interior1').addEvent('click', function(e) {
				e = new Event(e).stop();
			
				var url = "/gallery/GIV400interior1.html";
			
				/**
				 * The simple way for an Ajax request, use onRequest/onComplete/onFailure
				 * to do add your own Ajax depended code.
				 */
				new Ajax(url, {
					method: 'get',
					update: $('imglarge')
				}).request();
			});
		}); 

window.addEvent('domready', function(){
			$('GIV400interior2').addEvent('click', function(e) {
				e = new Event(e).stop();
			
				var url = "/gallery/GIV400interior2.html";
			
				/**
				 * The simple way for an Ajax request, use onRequest/onComplete/onFailure
				 * to do add your own Ajax depended code.
				 */
				new Ajax(url, {
					method: 'get',
					update: $('imglarge')
				}).request();
			});
		}); 
