$(document).ready(function(){
	
	$('#billboard').css({'background-image':''});
	
	//append a LI item to the UL list for displaying caption
	$('ul.slideshow').append('<li id="slideshow-caption" class="caption"><div class="slideshow-caption-container"><h3></h3><p></p></div></li>');

	//Set the opacity of all images to 0
	$('ul.slideshow li').css({opacity: 0.0});

	//Get the first image and display it (set it to full opacity)
	$('ul.slideshow li:first').css({opacity: 1.0});

	//Get the caption of the first image from REL attribute and display it
	/** Uncomment to make live
	$('#slideshow-caption h3').html($('ul.slideshow li:first').find('img').attr('title'));
	$('#slideshow-caption p').html($('ul.slideshow li:first').find('img').attr('alt'));

	//Display the caption
	$('#slideshow-caption').css({opacity: 0.7, bottom:0});
	*/
	
	setTimeout('slideShow(5000)',3000);

	if($('#billboard-form').length > 0)
	{
		$('#billboard-form').css({'display':'none','opacity':'0'});
	}

});

