$(document).ready(
	function(){
		$(document).ready(function() {
   $("#promo1 > ul").addClass("slideshow");
   $("#promo2 > ul").addClass("slideshow2");
 });
		
		$('ul.slideshow').innerfade({
		speed: 900,
		timeout: 5000,
		type: 'sequence',
		containerheight: '310px'
	});
		
		$('ul.slideshow2').innerfade({
		speed: 900,
		timeout: 5000,
		type: 'sequence',
		containerheight: '185px'
	});

});