jQuery.noConflict();
(function($){
	$(function() {
	
		$('.banner-slide').not(':first').hide();
		
		$('.banner ul li').each(function(i,e){
			$(e).click(function(event){
				if ($(e).hasClass('selected')){return false}
				$('.banner-slide:visible').fadeOut(function(){
					$('.banner ul li').removeClass('selected').eq(i).addClass('selected');
					$('.banner-slide').eq(i).fadeIn();									
				});
				event.preventDefault();
			});
		});
		
		$('.other-products .products').not(':first').hide();
		
		$('.other-products-menu a').each(function(i,e){
			$(e).click(function(event){
				$('.other-products .products:visible').hide();
				$('.other-products .products').eq(i).show();
				event.preventDefault();
			});
		});
		
		$('.cart-container').load('/cart.php');
		
		//external links
		$('a[rel="external"]').click(function(){
			window.open($(this).attr('href'));
			return false;
		});
		
	});
})(jQuery);