jQuery.noConflict();
(function($, window, document, undefined){

$(function(){

	if ($.fn.jCarouselLite)
	{
		var slideshow1 = $('.slideshow');
		if (slideshow1.length)
		{
			// remove ".disabled" from "a.prev" this if slideshow is circular
			slideshow1.append('<p class="nav"><a href="#" class="prev"></a><a href="#" class="next"></a></p>');
			slideshow1.find('.slider').jCarouselLite({
				btnPrev: '.slideshow a.prev',
				btnNext: '.slideshow a.next',
				visible: 1,
				scroll: 1,
				speed: 400,
				auto: false,
				circular: true
			});
		}	
	}

	if (window['DD_belatedPNG'] !== undefined)
		DD_belatedPNG.fix('img, .slideshow .nav a');

});

})(jQuery, window, document);
