var browser=navigator.appName;
//alert(browser);

if(browser == "Netscape"){
	HTMLElement.prototype.click = function() {
	var evt = this.ownerDocument.createEvent('MouseEvents');
	evt.initMouseEvent('click', true, true,
this.ownerDocument.defaultView, 1, 0, 0, 0, 0, false, false, false,
false, 0, null);
	this.dispatchEvent(evt);
	}
}
		
	$(document).ready(function(){
		$(".lightbox").fancybox({
			'overlayShow'			: true,
			'zoomSpeedIn'			: 600,
			'zoomSpeedOut'			: 500,
			'easingIn'				: 'easeOutBack',
			'easingOut'				: 'easeInBack'
		});
		
		$("#map").fancybox({
			'overlayShow'			: true,
			'zoomSpeedIn'			: 600,
			'zoomSpeedOut'			: 500,
			'easingIn'				: 'easeOutBack',
			'easingOut'				: 'easeInBack',
			'frameWidth'			:	800,
			'frameHeight'			:	700
		});
	});