
	Cufon.replace('h1, h2, h4', { textShadow: '2px 3px #1e0b01', hover: true
} );
	


jQuery.noConflict();


jQuery(document).ready(function(){
								
								jQuery("#faqs").accordion({ autoHeight: false });

	jQuery('.tourList').makeacolumnlists({cols:3,colWidth:200,equalHeight:"false",startN:1});


 	jQuery("a#tourListInline").fancybox({ 'frameWidth': 610, 'frameHeight': 620,'hideOnContentClick': false ,'overlayColor':'#000000','overlayOpacity': .8 ,'centerOnScroll': false}); 
	jQuery("a#showRules").fancybox({ 'frameWidth': 610, 'frameHeight': 2600,'hideOnContentClick': false ,'overlayColor':'#000000','overlayOpacity': .8,'centerOnScroll': false }); 
 
 	jQuery("#slider").easySlider({
		prevText: '',
		nextText: '',
		orientation: 'vertical'
	});

jQuery("a.overlay-flash").fancybox({
'overlayColor':'#000000',
'overlayOpacity': .8,
 'frameWidth': 610,
  'frameHeight': 3000,
'centerOnScroll' : false,
 'hideOnContentClick': false
 });

 });
 






jQuery(document).ready(function() {

	//When page loads...
	jQuery(".tab_content").hide(); //Hide all content
	jQuery("ul.flights li:first").addClass("active").show(); //Activate first tab
	jQuery(".tab_content:first").show(); //Show first tab content

	//On Click Event
	jQuery("ul.flights li").click(function() {

		jQuery("ul.flights li").removeClass("active"); //Remove any "active" class
		jQuery(this).addClass("active"); //Add "active" class to selected tab
		jQuery(".tab_content").hide(); //Hide all tab content

		var activeTab = jQuery(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
		jQuery(activeTab).fadeIn(); //Fade in the active ID content
		return false;
	});

});


function callFancy(my_href) {
var j1 = document.getElementById("hiddenclicker");
j1.href = my_href;
jQuery('#hiddenclicker').trigger('click');
}

