		jQuery(document).ready(function() {
			jQuery('#slideshow').slideshow({
				timeout: 4000,
				type: 'sequence',
				pauselink: 'pause1',
				pausecallback: function(self){
					self.html('Play')
				},
				playcallback: function(self){
					self.html('Pause');
				}
			});
			jQuery('#slideshow2').slideshow({
				timeout: 4000,
				fadetime: 4000,
				type: 'sequence',
				pauselink: 'pause2'
			});
	        });
	/** photo **/
	jQuery(function(){
		jQuery(".photo-list a").hover(function(){
			jQuery(this).children("span").fadeOut();
		}, function(){
			jQuery(this).children("span").fadeIn();
		})		
	});

