$(function() {
	$('div.gmpMapBoxTab').each(function() {
		var id = $(this).find('div.GMapContainer').attr('id');
		id = id.substr(0,5);
		var index = $(this).index() + 1;
		$(this).parents('div.box').find('ul li:nth-child(' + index + ')').find('a').click(function() {
			eval('map_' + id + '_init();');
		});
	});
});
