
$(document).ready(function(){
  
  var i = 0;
  $("div.overout").mouseover(function(){
    $("p:first",this).text("mouse over");
    $("p:last",this).text(++i);
  }).mouseout(function(){
    $("p:first",this).text("mouse out");
  });

  var n = 0;
  $("div.enterleave").bind("mouseenter",function(){
    $("p:first",this).text("mouse enter");
    $("p:last",this).text(++n);
  }).bind("mouseleave",function(){
    $("p:first",this).text("mouse leave");
  });


  $(".location_stockholm").bind("mouseenter",function(){
    $("p:first",this).text("mouse enter");
    $("p:last",this).text(++n);
  }).bind("mouseleave",function(){
    $("p:first",this).text("mouse leave");
  });


	$('area').click(function(e){
		
		
    	if ( $(this).hasClass("loc_belgrade") ){
			alert('woop');
		}

	 
	});
	
	
});
