// JavaScript Document
$(function() {


	
	
	
	

    $('#slideshow').cycle({
        fx:     'fade',
        speed:  '500',
        timeout: 6000,
        pager:  '#pager',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#pager li:eq(' + (idx) + ') a';
        }
    });
	
	$('#pause a').toggle(
function() {
$('#slideshow').cycle('pause');
$(this).text('play');
},
function() {
$('#slideshow').cycle('resume');
$(this).text('pause');
});
	
});