
$(function(){
	$("#wrapper").prepend('<div id="slideshow"></div>').css({ "backgroundImage" : "none"});
	
	$("#header").css('zIndex', 2);
	
	var width = 980;
	var height = 142;
	$.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);
	});
	
	$("#slideshow").css( { zIndex: 1, overflow: 'hidden', position: 'absolute', left: 0, top: '10px', width: width + 'px', height: height + 'px' })
		.cycle( { 
			fx : 'fade',
			speed : 2000
		} );
});

