$(function() {	$('marquee').marquee().mouseover(function () {            $(this).trigger('stop');        }).mouseout(function () {            $(this).trigger('start');        });	$('#slideshow img:first').fadeIn(1000, function() {		$('#prev').fadeIn();		$('#next').fadeIn();					$('#slideshow').cycle({			fx:	'scrollHorz',			timeout: 8000,			prev:	'#prev',			next:	'#next'		});	});});
