$(function()
{
	var options =
	{
		fx: "fade",
		speed: 1000,
		timeout: 4000
	};
	$("div.slideshow").each(function()
	{
		$ss = $(this).cycle(options);
	});
});