		$(document).ready(function() {
			$('#slideshow').slideshow({
				timeout: 2000,
				type: 'sequence',
				pauselink: 'pause1',
				pausecallback: function(self){
					self.html('Play')
				},
				playcallback: function(self){
					self.html('Pause');
				}
			});

	        });
		
		
		function getLink(url, toolbar, directories, status, menubar, scrollbars, resizable, width, height, screenX, left)
	{	
		window.open(url,'newWindow','toolbar=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, width=455, height=427, screenX=10, left=350');
	}
function openNewWindow(url, name, features) {
newWindow = window.open(url, name, features);
}