$(document).ready(function(){
	
	$(".fancyboxPopup").fancybox({
				'titleShow'		: false,
				'centerOnScroll' : true
	});
					   
	// FIXES - 
	//////////////////////////////////////////
	
	// Removes Bg on first Section
	// $(".section:first").addClass("bgNone");
	// Makes image in News appear under H1
	$(".news.section:first").addClass("imgBGFix ");
	
	// Fixes styling on first li in ul multiCol
	$("ul.multiCol li:first").addClass("firstCol");
	$("ul.fiveCol li:first").addClass("firstCol");
	
	//[end]		   

	// BOXES - 
	//////////////////////////////////////////
	
	// remove active state on load
	$("#boxes li a").removeClass("active"); 
	
	//Switch the active state per click
	$("#boxes li a").click(function() {
		$("#boxes li a").removeClass("active"); 
		$(this).addClass("active");
	});
		
	//[end]
	
	
	// GUIDES - 
	//////////////////////////////////////////
	
	// remove active state on load
	$("#guides li a").removeClass("active"); 

	//Switch the active state per click
	
	$("#guides li a").click(function() {
		$("#guides li a").removeClass("active"); 
		$(this).addClass("active");
	});
	
	//[end]
	
	
	// Smooth Scroll - 
	//////////////////////////////////////////
	
	$(function() {
		$('#anchorTestForm').bind('click',function(event){
		var $anchor = $(this);
		
		$('html, body').stop().animate({
			scrollTop: $($anchor.attr('href')).offset().top
		}, 1500,'easeInOutExpo');

		event.preventDefault();
		});
	});

	//[end]


});


	

	
