			//	http://jquery.malsup.com/cycle/ 			$(document).ready(function() {								var index = 0, hash = window.location.hash;								if (hash) {					index = /\d+/.exec(hash)[0];					index = (parseInt(index) || 1) - 1; // slides are zero-based				}								 $('#slideshow').cycle({					fx: 'fade', // transition type: fade, scrollUp, shuffle					pause: true,  // pause on hover					speed: 1500,					sync: true,					timeout: 5000,					//pauseOnPagerHover: true,					activePagerClass: 'activeSlide',					pager: '#pager',					slideExpr: '.slide',					after: function(curr,next,opts) {						window.location.hash = opts.currSlide + 1;					}				});			});
