// JavaScript Document

$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$('.latestnominees').cycle({
		fx: 'scrollHorz', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		prev: '#prev',
        next: '#next',
		speed: 'fast',
		timeout: 2000, // 2 seconds per slide
		pause: true, // Pause on hover
		random: 1
	});
	
	//$('.countdown').countdown({until: $.countdown.UTCDate(-4, 2011, 7, 0, 8, 0, 0, 0), // August 1st, 2011 9:00am - Contest Begins
	 //   layout: 'Contest begins in: {dn} {dl}, {hn} {hl}, {mn} {ml} and {sn} {sl}'});
	//$('.countdown').countdown({until: $.countdown.UTCDate(-4, 2011, 7, 12, 17, 0, 0, 0), // August 12th, 2011 5:00pm - Nominations Close
	    //layout: 'Nominations Close in: {dn} {dl}, {hn} {hl}, {mn} {ml} and {sn} {sl}'});
	//$('.countdown').countdown({until: $.countdown.UTCDate(-4, 2011, 7, 26, 17, 0, 0, 0), // August 26th, 2011 5:00pm - Voting Closes
	    //layout: 'Voting Closes in: {dn} {dl}, {hn} {hl}, {mn} {ml} and {sn} {sl}'});
	//$('.countdown').countdown({until: $.countdown.UTCDate(-4, 2011, 8, 7, 10, 0, 0, 0), // September 7th, 2011 10:00am - Winner Announced
	    //layout: 'Winner Announced in: {dn} {dl}, {hn} {hl}, {mn} {ml} and {sn} {sl}'});
	$('.countdown').countdown({until: $.countdown.UTCDate(-4, 2011, 8, 7, 10, 0, 0, 0), // September 7th, 2011 10:00am - Winner Announced
	    layout: 'Congratulations, St. Joseph County Bridges Out of Poverty!'});
});

