// JavaScript Document site.js


$(document).ready(function() {


// top homepage post cycle:

$('#slideCycle').cycle({ 
            fx: 'scrollHorz', 
            pause: 1, 
            speed: 800, 
            timeout: 0, // milliseconds between slide transitions (0 to disable auto advance)
            next: '.slideNext',
            prev: '.slidePrev',
            pager:  '#slideNav', 
     
            // callback fn that uses the li title as pager anchor 
            pagerAnchorBuilder: function(idx, slide) { 
            return '<li><a href="#" class="slideDot">' + slide.title + '</a></li>';} 
            });
			

// #topImages lightbox:
$("a[rel^='lightbox']").lightBox();


if(('#formPetaPetition')[0]) {
	$("#formPetaPetition").validate();
}

}); 
