$(document).ready(function()
{
    $('.shop-country a').click(function(event)
    {
    	event.preventDefault();
    	var parent = $(this).parent().parent();
    	var clicked = $(this);
    	clicked.css('cursor', 'wait');
		parent.find('.shop-country-loader').slideDown('fast', function()
		{
			parent.find('.shop-city-container').slideToggle('fast', function()
			{
				parent.find('.shop-country-loader').slideUp('fast');
				clicked.css('cursor', 'pointer');
			});
		});
	    return false;
    });
    
    $('.shop-city a').click(function(event)
    {
    	event.preventDefault();
    	$(this).css('cursor', 'wait');
		$(this).parent().parent().find('.shop-address-container').slideToggle('fast');
		$(this).css('cursor', 'pointer');
	    return false;
    });
});
