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

$(document).ready(function(){

	$('#menu > ul > li:not(.active) > a, #menu ul li li:not(.active) a').hover(function(){
		$(this).animate({ borderWidth: '5px', paddingBottom: '8px', borderBottomColor: '#c1d72e' }, 200);
	}, function(){
		$(this).animate({ borderWidth: '1px', paddingBottom: '10px', borderBottomColor: '#a7a47f' }, 200);
	});

	if ($.fn.fancybox)
	{
		$('.product .image a').fancybox({
			padding: 0
		});
	}

	if ($.fn.jCarouselLite)
	{
		$("#slideshow").jCarouselLite({
			auto: 5000,
			speed: 400,
			visible: 1
		});
	}


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

});

})(jQuery);