$(function() {
    $('#slideshow').cycle({

        speed:   500,/*fade speed*/
        timeout: 8000,/*how long a photo shows for*/
        pager:  '#nav',
		next:  '#next',
		prev:  '#prev',
        before: function() { 
            $('#text p').html(this.alt);			
            $('#text h2').html(this.title);
        }
    });
	
	$("#playpause").toggle(function() {
		$(this).css({"background-position": "center -18px"});
	    $('#slideshow').cycle('pause');
		return false;		
	}, function() {
		$(this).css({"background-position": "center 3px"});
	    $('#slideshow').cycle('resume', true);
		return false;		
	});

});