$(document).ready(function(){
	$('#mapframe').hide();
	$(document).mousedown ( function () {
		if ($('#mapframe').css('display') != 'none')
			$('#mapframe').hide();
	});
});

jQuery.fn.center = function () {
    this.css("position","absolute");
    this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
    this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
    return this;
}

function showMap(market, lang) {
	$('#mapframe').center();
	$('#mapiframe').attr('src','');
	$('#mapframe').show();
	$('#mapiframe').attr('src', 'map.php');
}

