$(document).ready(function () {
	
	/////////////////////////// SLIDESHOW	
	
	$('#slideshow').after('<div id="slideNav" class="slideNav"><div id="slidePlayPause"><button class="play" title="play"></button><button class="pause" title="pause"></button></div></div><br style="clear: both;" />').cycle({
        fx:     'scrollHorz',
        timeout: 5000,
        pager:  '#slideNav',
        prev:    '#slidePrevNext .prev',
        next:    '#slidePrevNext .next'
    });
	$('#slidePlayPause .play').hide();
    $('#slidePlayPause .pause').click(function() { 
	    $('#slideshow').cycle('pause'); 
	    $('#slidePlayPause .play').show();
	    $(this).hide();
	});
	
	$('#slidePlayPause .play').click(function() { 
	    $('#slideshow').cycle('resume', true); 
	    $('#slidePlayPause .pause').show();
	    $(this).hide();
	});
	
	
	/////Slide Show for Postal Ephemera Ñ needs updating
	
		$('#slideshow-pe').after('<div id="slideNav-pe" class="slideNav-pe"><div id="slidePlayPause"><button class="play" title="play"></button><button class="pause" title="pause"></button></div></div><br style="clear: both;" />').cycle({
        fx:     'scrollHorz',
        timeout: 5000,
        pager:  '#slideNav-pe',
        prev:    '#slidePrevNext-pe .prev',
        next:    '#slidePrevNext-pe .next'
    });
    $('#slidePlayPause-pe .play').hide();
    $('#slidePlayPause-pe .pause').click(function() { 
	    $('#slideshow-pe').cycle('pause'); 
	    $('#slidePlayPause-pe .play').show();
	    $(this).hide();
	});
	
	$('#slidePlayPause-pe .play').click(function() { 
	    $('#slideshow-pe').cycle('resume', true); 
	    $('#slidePlayPause-pe .pause').show();
	    $(this).hide();
	});
	
});