Cufon.replace('h1, h2, h3:not(.ui-accordion-header), .shop h4, .menu a, .intro, .header h2, .news-snippets h2, .footer h5', {hover:true});

$(function() {


	/*------------------SUBMENU */
	$('.parent-menu', '.menu').click(function(){

		if( !$(this).hasClass('with-link') ) {
			$(this).parent('li').find('.submenu').slideToggle(100);
			return false;
		};

	});

	/*------------------POPOVERS */
	if ($('a[rel*="popover"]').length) {
		$('a[rel="popover-above"]').popover({
			placement: 'above',
			html: true
		});

		$('a[rel="popover-right"]').popover({
			placement: 'right',
			html: true
		});

		$('a[rel="popover-below"]').popover({
			placement: 'below',
			html: true
		});

		$('a[rel="popover-left"]').popover({
			placement: 'left',
			html: true
		});
	};
	

	/*------------------CART WIDGET */
	$('.cart-widget .toggle').bind('click',function(){
		$('.cart-widget .details').slideToggle();
		$(this).toggleClass('active');
		return false;
	});
	
	$('.add-to-cart').bind('click',function(){
		$('.cart-widget .details table').append(
			'<tr><td class="item">Item</td><td class="qty">1</td><td class="price">$0</td></tr>'
		);
		return false;
	});

	if ( $('.open-cart').length ) {
		$('.cart-widget .toggle').trigger('click');
	};



	/*------------------ACCOLADES */
	if ( $('.accolades').length ) {
		
		$('.wine-vintage-name').click(function(){
			$(this).toggleClass('expanded');
			$(this).next('.accolades-list').slideToggle(150);
		});

	}; //endif

});
