﻿jQuery(document).ready(function() {
  $( ".teaser" ).hide();
  $( ".id0" ).show();

  $( "area" ).each (
    function( intIndex ) {
	
      $( this ).bind (
        "click",
        function() {
		  /*alert(intIndex);*/
          $( ".teaser" ).hide();
          $( ".id" + intIndex ).show();
          return false;
          }
        );
    }
	);
  
});
