$(document).ready(function()
{	$(".thumbs a").click(function()
	{		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
		$("#big_photo").attr({ src: largePath, alt: largeAlt });
		$("#descr").html(largeAlt);
		return false;
	});
});
function showItem(id)
{
	jQuery('#imgMapId img.selectedRegion').removeAttr('style');
	jQuery('#map'+id).css('display', 'block');
	jQuery('.city').css('display', 'none');
	jQuery('#city'+id).css('display', 'block');
}

