mainNav = function() {
	$("#topnav li").bind("mouseenter",function(){
                this.className += "_over over";
	}).bind("mouseleave",function(){
                this.className = this.className.replace("_over over", "");
	});
}

$(document).ready(function(){

	// FIRE UP MAIN NAVIGATION
	$("ul.sf-menu").superfish({
		autoArrows:    false,
		dropShadows:   false,
		disableHI:     true
	});

	// FIRE UP HOME PAGE SLIDER
	$("#slider").easySlider({
		continuous: true,
		auto: true,
		pause: 4750,
		speed: 1200
	});
	
	// FIRE UP SHOW/HIDE AREAS ON PAGES	
	var showText="show more";
	var hideText="hide";
	$(".toggle").prev().append(' (<a href="#" class="toggleLink">'+showText+'</a>)');
	$('.toggle').hide();
	$('a.toggleLink').click(function() {
	
		if ($(this).text()==showText) {
			$(this).text(hideText);
		}
		else {
			$(this).text(showText);
		}
		$(this).parent().next('.toggle').slideToggle('slow');
		return false;
	});
	 
	// FIRE UP FAQs
	$('#faq').faq();
	
	// FIRE UP HIKING GRADE POP UP
	$('a.load-hiking-grades').cluetip({
		cursor: 'pointer',
		width: 600,
		showTitle: false
	});
	
	// FIRE UP SCROLL TO TOP FEATURE
	$("#toTop").scrollToTop({
		speed: 1000,
		ease: "easeOutExpo"
	});
	
	// FIRE UP MAP LIGHTBOX
	$("a.colorbox").colorbox({transition:'fade'});
	
	$('#trip-details-slideshow').cycle({ 
		speed:  3000, 
		timeout: 7000, 
		pager:  '#pager',
		slideExpr: 'img'
	});


});
