﻿// Functions specific to a site.

(function($) {
	$(document).ready(function() {
		// Place document manipulation code here
			Cufon.replace('h1, #banner-white-bar h5');
		
			$('#subnav ul ul li:last-child').addClass('last');
			
			$('.overview .overview-container:nth-child(3n+1)').css('clear', 'both');
			// Home Image slideshow 
			
			$(document).ready(function() {
				$('.slideshow').cycle({
					fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
				});
			});
			
			$("a.popup").fancybox({
				'speedIn': 600,
				'speedOut': 200,
				'padding': 8,
				'margin': 0,
				'width': 1200,
				'height': 720,
				'centerOnScroll': true,
				'showCloseButton': true,
				'enableEscapeButton': true,
				'overlayShow': true,
				'hideOnOverlayClick': false,
				'type': 'iframe'
				
			});
		
	}); 
})(jQuery);
