
$(function(){
	$("#header").prepend('<div id="slideshow"></div>').css({ "backgroundImage" : "none"});
	
	$("#header").css('zIndex', 2);
	
	var width = 940;
	var height = 237;
	$.each(slides, function() {
		var img = $('<img />');
		img.attr('src', this[0]);
		img.attr('alt', this[1]);
		img.attr('width', width);
		img.attr('height', height);
		$("#slideshow").append(img);
	});
	
	$('<ul id="slideshownav"></ul>').appendTo("#header");
	
	$("#slideshow").css( { zIndex: 1, overflow: 'hidden' })
		.cycle( { 
			fx : 'fade',
			speed : 2000,
			pager: '#slideshownav',
            pagerAnchorBuilder: function(idx, slide) { 
		        return '<li><a href="#"></a></li>'; 
		    } 
		} );
});

