$(function() {
	
	$('.show_call').click(function() {
			$('#divCallMe').show()
	})
	$('.close_call').click(function() {
			$('#divCallMe').hide()
	})
	
	$('.show_lens').click(function() {
			$(this).parent().parent().find('.form2').show()
	})
	
	$('.close_lens').click(function() {
			$(this).parent().parent().hide()
	})
	
	var ma_id = ma_rel = 0;
	
	$('.markers a').mouseenter(function() {
			$('.minfo').hide()			
			//ma_id = $(this).attr('id')
			ma_rel = $(this).attr('rel')
			/*alert(ma_id)*/
			//$('#info' + ma_id).show()
			$('.minfo[rel="' + ma_rel + '"]').show()
	})
	
})
