$(document).ready(function(){	
	
	/*background slide show*/
	$('.slideshow').cycle({
		fx: 'fade',
		delay: 1000,
		speed:  1000
	});
	/*stop pause*/
	$('.pause').click(function()
	{
	if ($(this).attr("class") == "pause")	
		$('.back-photo').hide(),
		$(this).attr("class", "play");
	else
		$('.back-photo').show(),
		$(this).attr("class", "pause");
	});
});


