jQuery.noConflict();
(function($){

$(document).ready(function(){

	$('#promo li').hide().filter(':eq(0)').show();
	setInterval(function(){
		var p = $('#promo');
		var li = p.find('li:visible');
		var n = li.next();
		if (!n.length)
			n = p.find('li:eq(0)');
		li.hide(); n.show();
	}, 3000);

	if ($.browser.msie) {
		try {document.execCommand("BackgroundImageCache", false, true);} catch(err){};
		if (typeof(DD_belatedPNG) != 'undefined')
		{
			DD_belatedPNG.fix('');
		}
	}

});

})(jQuery);
