﻿// Functions specific to a site.
Cufon.replace('h1, #ctas h2, #cta-top-reasons li');

(function($) {
	$(document).ready(function() {
		$('#subnav ul li:last-child, #ctas ul li:last-child').addClass('last-child');
		if ($('#header-banner ul').length != 0) {
			$('#header-banner > ul').cycle({
				fx: 'fade',
				timeout: 6000,
				delay: 0,
				next: '.next',
				prev: '.prev',
				pager: '#diagram',
				pagerAnchorBuilder: function(idx, slide) { 
					// return selector string for existing anchor 
					return '#diagram li:eq(' + idx + ') a'; 
				}
			});
			$('#text-6 > .textwidget').cycle({
				fx: 'fade'
			});
		}
		if ($('ul.tabs').length != 0) {
			$("ul.tabs").tabs("div.c-w1 > div");
			$('.entry-content > p:last-child').addClass('last-child');
			$('.entry-content > p > a:last-child').addClass('upcoming-event');
		}
	}); 
})(jQuery);
