jQuery(function( $ ){			
	
	//TOC, shows how to scroll the whole window
	$('.aromaNav a').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
		$.scrollTo( this.hash, 800, { easing:'swing' });
		return false;
	});
	
	//TOC, shows how to scroll the whole window
	$('.productNav a').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
		$.scrollTo( this.hash, 800, { easing:'swing' });
		return false;
	});
	
	$('.reviewsTop a').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
		$.scrollTo( this.hash, 800, { easing:'swing' });
		return false;
	});
	
	$(".with-tooltip").simpletooltip();
	
});

$(function() {  
	
	$('ul#faq li').removeClass('current_faq');
    $('ul#faq a.question').click(function() { 
        if($(this).parent().hasClass('current_faq')) {
            $(this).siblings('ul').toggle('slow',function() {  
                $(this).parent().removeClass('current_faq');
            });  
        } else {  
            $('ul#faq li.current_faq ul').slideUp('slow',function() {  
                $(this).parent().removeClass('current_faq');  
            });  
            $(this).siblings('ul').toggle('slow',function() {  
                $(this).parent().toggleClass('current_faq');  
            });  
        }  
        return false;  
    });  
	
	
	$('.shopBox').hover(function(){
			$(this).css({backgroundColor: "#f6f9ee"});
			},function(){
				$(this).css({backgroundColor: "#fff"});
				});

});