$(document).ready(function($)
{
	if($("#spotlight").length != 0)
	{
		$("#spotlight li").css({display:"block"});

		$('#spotlight').after('<div id="pager">').cycle(
		{
			fx:       "fade",
			speed:    1500,
			timeout:  8000,
			pause:    1
		});

		$("#spotlight li img").each(function()
		{
			var img_url = $(this).attr('src');
			var target = $(this).parent().parent();
			$(this).hide();
			target.css({background:"url('" + img_url + "') no-repeat 0 0"}).prepend('<a class="imagelink" href="' + $(this).parent().attr('href') + '" title="' + $(this).attr('alt') + '"></a>');
		});
	}
});
