jQuery.noConflict();
    
	var t
	var j = 0
	
	function showSlide(){
			  jQuery('span#change_pic')
				.html('<img src="./../image_change/' + Pic[j] + '" />')
				.hide()
				.fadeIn(1000);
			  j = j + 1
			  if (j >= (PicLength)) j=0
			  t = setTimeout('hideSlide()', 5000)
	}
	
	function hideSlide(){
		jQuery('span#change_pic').fadeOut(1000);
		t = setTimeout('showSlide()', 1000)
	}
