$(function() {


	$('#clkGallery').click(function() { 
		$("#page_panorama").animate({ height: 'hide', opacity: 'hide' }, 'slow'); 
		$("#page_video").animate({ height: 'hide', opacity: 'hide' }, 'slow'); 
		$("#page_slideshow").animate({ height: 'hide', opacity: 'hide' }, 'slow'); 
		$("#page_gallery").animate({ height: 'show', opacity: 'show' }, 'slow');
		$('ul#main_navi > li').removeClass('active');
		$('#clkGallery').parent().addClass('active');
	});
	$('#clkSlideshow').click(function() { 
		$("#page_panorama").animate({ height: 'hide', opacity: 'hide' }, 'slow'); 
		$("#page_video").animate({ height: 'hide', opacity: 'hide' }, 'slow'); 
		$("#page_gallery").animate({ height: 'hide', opacity: 'hide' }, 'slow'); 
		$("#page_slideshow").animate({ height: 'show', opacity: 'show' }, 'slow'); 
		$('ul#main_navi > li').removeClass('active');
		$('#clkSlideshow').parent().addClass('active');
	});
	$('#clkPanorama').click(function() { 
		$("#page_panorama").animate({ height: 'show', opacity: 'show' }, 'slow'); 
		$("#page_gallery").animate({ height: 'hide', opacity: 'hide' }, 'slow'); 
		$("#page_slideshow").animate({ height: 'hide', opacity: 'hide' }, 'slow'); 
		$("#page_video").animate({ height: 'hide', opacity: 'hide' }, 'slow'); 
		$('ul#main_navi > li').removeClass('active');
		$('#clkPanorama').parent().addClass('active');
	});
	$('#clkVideo').click(function() { 
		$("#page_panorama").animate({ height: 'hide', opacity: 'hide' }, 'slow'); 
		$("#page_gallery").animate({ height: 'hide', opacity: 'hide' }, 'slow'); 
		$("#page_slideshow").animate({ height: 'hide', opacity: 'hide' }, 'slow'); 
		$("#page_video").animate({ height: 'show', opacity: 'show' }, 'slow'); 
		$('ul#main_navi > li').removeClass('active');
		$('#clkVideo').parent().addClass('active');
	});

	//tabs
	$('#tabs').tabs();	
 
	// fancybox popups

	$("#website").fancybox({
		'type'				: 'iframe',
		'width'				: '98%',
		'height'			: '98%',
		'padding'			: 0,
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'centerOnScroll'	: true,
		'overlayOpacity'	: .5,
		'titleShow'				: false
	});
	
	$("#emailrestaurant").fancybox({
		'type'				: 'iframe',
		'width'				: 550,
		'height'			: 478,
		'padding'			: 0,
		'scrolling'			: 'no',
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'centerOnScroll'	: true,
		'overlayOpacity'	: .5,
		'titleShow'				: false
	});
	
	$("#sendfriend").fancybox({
		'type'				: 'iframe',
		'width'				: 550,
		'height'			: 600, 
		'padding'			: 0,
		'scrolling'			: 'no',
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'centerOnScroll'	: true,
		'overlayOpacity'	: .5,
		'titleShow'				: false
	});
	
	$("#map").fancybox({
		'type'				: 'iframe',
		'width'				: '98%',
		'height'			: '98%',
		'padding'			: 0,
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'centerOnScroll'	: true,
		'overlayOpacity'	: .5,
		'titleShow'				: false
	});
	
	$("#directions").fancybox({
		'type'				: 'iframe',
		'width'				: 550,
		'height'			: 295,
		'padding'			: 0,
		'scrolling'			: 'no',
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'centerOnScroll'	: true,
		'overlayOpacity'	: .5,
		'titleShow'				: false
	});

	$("#virt-tour").fancybox({
		'type'				: 'iframe',
		'width'				: 834,
		'height'			: 640,
		'padding'			: 0,
		'scrolling'			: 'no',
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'centerOnScroll'	: true,
		'overlayOpacity'	: .5,
		'titleShow'				: false
	});

	$("#letusknow").fancybox({
		'type'				: 'iframe',
		'width'				: 550,
		'height'			: 410,
		'padding'			: 0,
		'scrolling'			: 'no',
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'centerOnScroll'	: true,
		'overlayOpacity'	: .5,
		'true'				: false
	});
});        


