$(function() {
	
	// Where to buy page
	var countries		= $('.section.locations .grid').children(),
		darkBg			= $('.darkbg');
	
	countries.each(function() {
		var country	= $(this),
			popup	= country.find('.stores'),
			close	= country.find('.close');			
		
		country.find('h2').click(function() {
			popup.fadeIn('fast');
			darkBg.fadeIn('fast');
		});
		
		close.click(function() {
			popup.fadeOut('fast');
			darkBg.fadeOut('fast');
		});
		darkBg.click(function() {
			popup.fadeOut('fast');
			darkBg.fadeOut('fast');
		});
		
	});
});
