jQuery.noConflict();

(function($, window, document, undefined){


$(function(){


	var slideshow = $('#slideshow');
	if (slideshow.length)
	{
		setInterval(function(){
			var a = slideshow.find('.active'), n = a.next();
			if (!n.length)
				n = slideshow.find('li:eq(0)');
			n.hide().addClass('next');
			a.fadeOut(600, function(){
				a.removeClass('active').show();
				n.removeClass('next').addClass('active');
			});
			n.fadeIn(600);
		}, 5600);
	}


	if ($.browser.msie)
	{
		if ($.browser.version <= 6)
		{
			try {document.execCommand("BackgroundImageCache", false, true);} catch(e){};
			if (window['DD_belatedPNG'] !== undefined)
				DD_belatedPNG.fix('img');
		}
	}

});



})(jQuery, window, document);



// @REMOVE START@
window.log = function(){
	log.history = log.history || [];
	log.history.push(arguments);
	if (this.console) {
		console.log(Array.prototype.slice.call(arguments));
	}
};
// @REMOVE END@

