$(function(){
	$('.mapSelector a').click(function(){
		var selectedId = $(this).attr("id");		
		var parent = $(this).closest("#mapsHolder");
		
		parent.attr('class',selectedId);
		return false;
	});
	
	var artBlock =  $('#ArticleBlock').first();
	var newsBlock = $('#NewsBlock').first();	
	if((artBlock.length!= 0) && (newsBlock.length != 0)){
		var maxHeight = Math.max(artBlock.height(),newsBlock.height());
		artBlock.height(maxHeight);
		newsBlock.height(maxHeight);
	}
		
});
