(function($){$(function(){

// Add the list
var list = $('<ul id="slideshow">').css({'width':'625px','listStyleType':'none','margin':0,'padding':0});
var images = ['slide1','slide2','slide3','slide4','slide5','slide6','slide7'];

// Set left only if not ie 7
if(!$.browser.msie || $.browser.version != "7.0") {
	list.css("left","265px");
}

for(var i=0;i<images.length;++i){
	var slide = images[i];
	list.append(
		$('<li>').append($('<img>').attr('src','/uploads/images/slideshow/'+slide+'.jpg')).css('right',0)
	);
}
$('#content').prepend(list);

$('#slideshow').innerfade({
'animationtype':'fade',
'speed':1000,
'timeout':5000,
'type':'sequence',
'containerheight':'260px'
});

});})(jQuery);
