$(function(){
    var countrySelection = $('#country-selector a').text();
    var regionSelection = $('#region-selector a').text();
    if (countrySelection === 'All') {
        $('#region-selector a').css('color', 'gray');
    }
    if (regionSelection == 'All') {
        $('#city-selector a').css('color', 'gray');
    }
	$('.select h2 a').mousedown(function(e){
		e.stopPropagation();
		var p = $(this.parentNode.parentNode),
			el = $('ul:first', p),
			hidden = el.is(':hidden');
		$('.select ul').css('display', 'none');
		if(hidden){
			var h = $('h2:first', p);
			pos = h.position();
			pos.top+=h.outerHeight();
			el.css({display:'block', left: pos.left, top: pos.top}).mousedown(function(e){
				e.stopPropagation();
			});
			$(document.body).mousedown(function(){
				$('.select ul').css('display', 'none');
				$(this).unbind('mousedown');
			});
		}else{
			$(document.body).unbind('mousedown');
		}
	});
});
