$(document).ready(function() {
    //Orbit Slider on Homepage	
//    $('#featured').orbit();
//    $('#featured').orbit(/*{
//         animation: 'horizontal-push',   // fade, horizontal-slide, vertical-slide, horizontal-push
//         animationSpeed: 800,            // how fast animtions are
//         timer: true, 			 // true or false to have the timer
//         advanceSpeed: 1000, 		 // if timer is enabled, time between transitions 
//         pauseOnHover: false, 		 // if you hover pauses the slider
//         startClockOnMouseOut: true, 	 // if clock should start on MouseOut
//         startClockOnMouseOutAfter: 1000,// how long after MouseOut should the timer start again
//         directionalNav: true, 		 // manual advancing directional navs
//         captions: true, 		 // do you want captions?
//         captionAnimation: 'fade', 	 // fade, slideOpen, none
//         captionAnimationSpeed: 800, 	 // if so how quickly should they animate in
//         bullets: true,		 // true or false to activate the bullet navigation
//         bulletThumbs: false,		 // thumbnails for the bullets
//         bulletThumbLocation: '',	 // location from this file where thumbs will be
//         afterSlideChange: function(){}  // empty function 
//    } */);

//	/* This is basic - uses default settings */
//	$("a#fancybox").fancybox({
//		'autoDimensions'	: true,
//		'transitionIn'	:	'fade',
//		'transitionOut'	:	'fade',
//		'speedIn'		:	500, 
//		'speedOut'		:	200, 
//		'overlayShow'	:	true
//	});
//	
//	/* Using custom settings */
//	$("a.iframe").fancybox({
//		'autoDimensions'	: false,
//		'width'		:	'500',
//		'height'	:	'500',
//		'transitionIn'	:	'elastic',
//		'transitionOut'	:	'elastic',
//		'speedIn'		:	600, 
//		'speedOut'		:	200, 
//		'overlayShow'	:	true
//	});
//
//	/* Apply fancybox to multiple items */
//	$("a.group").fancybox({
//		'transitionIn'	:	'elastic',
//		'transitionOut'	:	'elastic',
//		'speedIn'		:	600, 
//		'speedOut'		:	200, 
//		'overlayShow'	:	false
//	});
	
//	// Scroll
//	jQuery.localScroll();
//
//	//Equal Column Heights
//	//set the starting bigestHeight variable
//	var biggestHeight = 0;
//	//check each of them
//	$('.equal').each(function(){
//		//if the height of the current element is
//		//bigger then the current biggestHeight value
//		if($(this).height() > biggestHeight){
//			//update the biggestHeight with the
//			//height of the current elements
//			biggestHeight = $(this).height();
//		}
//	});
//	//when checking for biggestHeight is done set that
//	//height to all the elements
//	$('.equal').height(biggestHeight);
});

