$(document).ready(function() {
  $('ul.dropDownList li').click(function() {
    if ($(this).parents('ul.dropDownList').eq(0).hasClass('ingredient') == false){
      if ($(this).hasClass('open')){
        $(this).removeClass('open');
        $(this).find('p.text').slideUp('slow', function() {});
        $(this).find('span.bg').css('background-position','left top');
      } else {
        $(this).addClass('open');
        $(this).find('p.text').slideDown('slow', function() {});
        $(this).find('span.bg').css('background-position','right top');
      }
    }
  })

  // Open and close container
  $('.dropDown h2, .dropDown span.arrow').click(function() {
    if ($(this).parent().find('.accordionWrapper').css('display') == 'none'){
      $(this).parent().find('.accordionWrapper').slideDown('slow', function() {});
      $(this).parent().find('.arrow').removeClass('down').addClass('up');
    } else {
      $(this).parent().find('.accordionWrapper').slideUp('slow', function() {});
      $(this).parent().find('.arrow').removeClass('up').addClass('down');
    }
    return false;
  })

});

