$(document).ready(function() {

	//home page slideshow
	//text and images are two independent cycle slideshows
	//both share the same pagination
	//fx used are identified on template_home.php for each slideshow
	$('.slideshow').each(function(index) {
	    $(this).cycle({
	        pager:  '#pager',
					speed:		1500,
					timeout:	8000,
	        pagerAnchorBuilder: function(i) {
	            if (index == 0)
              // for first slideshow, return a new anchor
              return '<a href="#">'+(i+1)+'</a>';
	            // for 2nd slideshow, select the anchor created previously
	            return '#pager a:eq('+i+')';
	        }
	    });
	});

	//expanding divs
	$(".trigger").toggler({speed: 500});


});
