﻿jQuery(document).ready(function(){
	mainancho=jQuery("#main-container").width();
	centerancho=jQuery(".center").width();
	difancho=(mainancho-centerancho)/2;
	mainalto=jQuery("#main-container").height();
	centeralto=jQuery(".center").height();
	difalto=(mainalto-centeralto)/2;
	jQuery("area").mouseover(function() {
		jQuery("#mensaje-mapa").css({'display':'inline'});
	}).mouseout(function() {
		jQuery("#mensaje-mapa").css({'display':'none'});
	
	});
	jQuery("area").mousemove(function(e){
      jQuery("#mensaje-mapa").css({'top':e.pageY-difalto-45, 'left':e.pageX-difancho+5});
	  var mensaje = jQuery(this).attr("class");
	  jQuery("#mensaje-mapa").html(mensaje + '</br>' + 'Ingresar a la parcela');
	}); 
	jQuery("#mapa-imagen").ready(function() {
		jQuery('#content-container').append('<p id="mensaje-mapa"></p>');
		jQuery("#mensaje-mapa").css({'background-color': '#34B9CC', 'border': '1px solid #ccc', 'margin':'0px', 'color':'#FFFFFF', 'width':'auto', 'position':'absolute', 'display':'none', 'z-index':'999'});
		
	});
	
});

