// JavaScript Document
$(document).ready(function(){
			   $("#pictureSlideShow img").show();
		$("#pictureSlideShow").cycle({
						fx:     'fade', 
    speed:   500, 
    timeout: 5000, 
    next:   '#pictureSlideShow', 
    pause:   1,
	before: onBefore
									 });
		
	
	
	
	
	//$("#pictureSlideShow img").hover(function(){
		
	function onBefore(){	
		var text = $(this).attr("alt");
		$("#pictureCaption").html(text);
		$("#pictureCaption").show();

	}
												

});