﻿(function($){var currentCountry,currentRegion;$('#stockists ul.regions, #stockists ul.addresses li').css({'display':'none'});$('#stockists ul.countries > li > a[href]').click(function(){var slug=(this.href).match(/#(.*)$/)[1];if(currentCountry!=slug){$('#stockists ul.regions').fadeOut('slow');$('#stockists ul.addresses li').fadeOut('slow');$('#stockists ul.regions > li > a[href]').removeClass('current');$('a[name='+slug+']').next('ul').fadeIn('slow');$('#stockists ul.countries > li > a[href]').removeClass('current');$(this).addClass('current');currentCountry=slug;currentRegion=false;}
return false;}).append('<span> ></span>');$('#stockists ul.regions > li > a[href]').click(function(){var slug=(this.href).match(/#(.*)$/)[1];if(currentRegion!=slug){$('#stockists ul.addresses li').fadeOut('slow');$('a[name='+slug+']').parent('li').fadeIn('slow');$('#stockists ul.regions > li > a[href]').removeClass('current');$(this).addClass('current');currentRegion=slug;}
return false;}).append('<span> ></span>');$('#stockists').addClass('hijacked');})($);