// Slide Show
$(function() {
	$('#slide').cycle({fx:'fade', speed:'slow', timeout: 0, next:'#next', prev:'#prev', timeout: 6000, pause:1 });
	$('#stop').click(function(){$('#slide').cycle('pause');return false;});
	$('#start').click(function(){$('#slide').cycle('resume');return false;});
	$('a.show').click(function(){
		newwindow= window.open($(this).attr('href'),'name','height=620,width=780');
		if (window.focus) {newwindow.focus()}
		return false;
	});
})