jQuery(document).ready(function() {
	$("#image_zoom").fancybox({
		'width'				: 950,
		'height'			: 600,
		'scrolling'  		: 'no',
 		'titleShow'  		: false,
        'autoScale'     	: false,
        'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'overlayColor'		: '#fff',
		'overlayOpacity'	: 0.7,
		'type'				: 'iframe'
	});
		$("#icon_zoom").fancybox({
		'width'				: 950,
		'height'			: 600,
		'scrolling'  		: 'no',
 		'titleShow'  		: false,
        'autoScale'     	: false,
        'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'overlayColor'		: '#fff',
		'overlayOpacity'	: 0.7,
		'type'				: 'iframe'
	});
		$(".popup").fancybox({
		'autoDimensions'	: false,
		'width'         	: 950,
		'height'       		: 600,
		'scrolling'  		: 'auto',
 		'titleShow'  		: false,
        'autoScale'     	: false,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'overlayColor'		: '#fff',
		'overlayOpacity'	: 0.7,
		'type'				: 'iframe'
	});
		$(".review").fancybox({
		'autoDimensions'	: false,
		'width'         	: 700,
		'height'       		: 700,
		'scrolling'  		: 'auto',
 		'titleShow'  		: false,
        'autoScale'     	: false,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'overlayColor'		: '#fff',
		'overlayOpacity'	: 0.7,
		'type'				: 'iframe'
	});
	
		$(".share").fancybox({
		'autoDimensions'	: false,
		'width'         	: 700,
		'height'       		: 500,
		'scrolling'  		: 'auto',
 		'titleShow'  		: false,
        'autoScale'     	: false,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'overlayColor'		: '#fff',
		'overlayOpacity'	: 0.7,
		'type'				: 'iframe'
	});
	
		$(".help").fancybox({
		'autoDimensions'	: false,
		'width'         	: 800,
		'height'       		: 'auto',
		'scrolling'  		: 'auto',
 		'titleShow'  		: false,
        'autoScale'     	: false,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'overlayColor'		: '#fff',
		'overlayOpacity'	: 0.7,
		'type'				: 'ajax'
	});
	
		//When page loads...
	$(".tab_content").hide(); //Hide all content
	$("ul.tabs li:first").addClass("active").show(); //Activate first tab
	$(".tab_content:first").show(); //Show first tab content
 
	//On Click Event
	$("ul.tabs li").click(function() {
 
		$("ul.tabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".tab_content").hide(); //Hide all tab content
 
		var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active ID content
		return false;
	});
	
});

function openTab(tab) {
	$("ul.tabs li").removeClass("active");
	$(".tab_content").hide();
	$("#Li"+tab+"").addClass("active");
	$("#Tab"+tab+"").show();
}
