/* Author: Graeme Reed - http://www.graemereed.ca

*/

$(function(){
	
	// Lightbox
	$(document).ready(function() {
		// Call lighbox
	 	$('a[rel="lightbox"]').lightBox();
	});
	// Dropdown Menu
		$('#menu li').hover(
		        function () {
		            //show its submenu if not "mobile"
							if ( Modernizr.mq('only screen and (max-width: 768px)') == false) {
		            $('ul', this).slideDown(100);
							}
		        }, 
		        function () {
		            //hide its submenu
							if ( Modernizr.mq('only screen and (max-width: 768px)') == false) {
		            $('ul', this).slideUp(100);
		       		}
		        }
		    );
	
	// Leads Animation
	// $('#leads a').hover(
	// 	        function () {
	// 	            // animate icon
	// 	            $(this).stop().animate({
	// 								top: -6,
	// 								paddingTop: 6,
	// 								height: 44
	// 							});
	// 	        }, 
	// 	        function () {
	// 	            // revert animation
	// 	            $(this).stop().animate({
	// 								top: 0,
	// 								paddingTop: 0,
	// 								height: 50
	// 							});       
	// 	        }
	// 	    );
	
	// Banner Cycle
	$('#slideshow').cycle({
		fx: 'custom', 
		cssBefore: { left: 960 }, 
		  animIn:  { left: 0 }, 
		  animOut: { left: -960 }
	})
	
});
