$(document).ready(function(){
		
		//for showing popup of email field STARTS
	$('.pop_up').hide();
	$('.imginfo').hover(updatepopup,function(){ $('.pop_up').stop(true,true).fadeOut(); });			 
		//for showing popup of email field ENDS
		
						//	 
						
						   });

function updatepopup()
{
	var thisAlt = $(this).attr('alt');
	var currenthtml = thisAlt.split('/')[0] + "<br/><span>"+thisAlt.split('/')[1] + "</span>";
	
	var position = $(this).attr('coords').split(',');
	var cTop = +position[1] - 80;
	var cLeft = +position[0]-90;
	var adjustTop= -410;
	var adjustLeft = 0;


	$('.pop_up').css('top',(cTop+adjustTop)+'px');
	$('.pop_up').css('left',(cLeft)+'px');
	$('.pop_up').html(currenthtml);
	$('.pop_up').stop(true,true).fadeIn();
}


