   var imgpos;
$(document).ready(function(){
   var w;
   var h;
   var img;
   $("img").each(function() {
	if ($(this).attr("useMap")!=''){
		w=$(this).width();
		h=$(this).height();
		imgpos=$(this).position();
		$(this).attr("id", "vide");
		$(this).css({ position:'relative', width:w,height:h});
	}
   });




  //$(".imgContainer").css({ position:'relative', width:w,height:h});

  $("area").each(function() { 
  if ($(this).attr('alt')!=''){
     var url = $(this).attr('href');
     var coords = $(this).attr('coords').split(','); 

     var w1=parseInt(coords[2]-coords[0]);
     var h1=parseInt(coords[3]-coords[1]);
     $("#vide").parent().css({ position:'relative', width:w,height:h});
     $("#vide").css({ position:'relative'});
     $("#vide").parent().append("<div class='odiv' onclick='javascript:window.open(\""+url+"\");'  style='width:"+w1+"px;height:"+h1+"px;top:"+eval(parseInt(coords[1])) +"px;left:"+eval(parseInt(coords[0]))+"px;display:;' title='" + $(this).attr('alt') + "'></div>")
   

    
   }
   });
  
    $(".odiv").each(function() { 
		$(this).simpletooltip(); 
      });

});
