function swapImage(img, obj){
    obj.src = "images/" + img;
}

/*JQuery*/
$(document).ready(function () 
{
//hide all elements
    $('#tl-1999_info').hide();
    $('#tl-1999-ws_info').hide();
    $('#tl-2000_info').hide();
    $('#tl-2000-ws_info').hide();
    $('#tl-2001_info').hide();
    $('#tl-2001-ws_info').hide();
    $('#tl-2002_info').hide();
    $('#tl-2003_info').hide();
    $('#tl-2003-ws_info').hide();
    $('#tl-2004_info').hide();
    $('#tl-2005_info').hide();
    $('#tl-2006_info').hide();
    $('#tl-2007_info').hide();
    $('#tl-2008_info').hide();
    $('#tl-2008-ws_info').hide();
	$('#tl-2009_info').hide();
	$('#tl-2010_info').hide();
//Event Handlers
    $("#tl-1999").hoverIntent(
      function () {
        $('#tl-1999_info').show("slow"); 
      }, 
      function () {
        $('#tl-1999_info').hide("slow"); 
      }
    );
    $("#tl-1999-ws").hoverIntent(
      function () {
        $('#tl-1999-ws_info').show("slow"); 
      }, 
      function () {
        $('#tl-1999-ws_info').hide("slow"); 
      }
    );
    $("#tl-2000").hoverIntent(
      function () {
        $('#tl-2000_info').show("slow"); 
      }, 
      function () {
        $('#tl-2000_info').hide("slow"); 
      }
    );
    $("#tl-2000-ws").hoverIntent(
      function () {
        $('#tl-2000-ws_info').show("slow"); 
      }, 
      function () {
        $('#tl-2000-ws_info').hide("slow"); 
      }
    );
    $("#tl-2001").hoverIntent(
      function () {
        $('#tl-2001_info').show("slow"); 
      }, 
      function () {
        $('#tl-2001_info').hide("slow"); 
      }
    );
    $("#tl-2001-ws").hoverIntent(
      function () {
        $('#tl-2001-ws_info').show("slow"); 
      }, 
      function () {
        $('#tl-2001-ws_info').hide("slow"); 
      }
    );
    $("#tl-2002").hoverIntent(
      function () {
        $('#tl-2002_info').show("slow"); 
      }, 
      function () {
        $('#tl-2002_info').hide("slow"); 
      }
    ); 
    $("#tl-2003").hoverIntent(
      function () {
        $('#tl-2003_info').show("slow"); 
      }, 
      function () {
        $('#tl-2003_info').hide("slow"); 
      }
    );
    $("#tl-2003-ws").hoverIntent(
      function () {
        $('#tl-2003-ws_info').show("slow"); 
      }, 
      function () {
        $('#tl-2003-ws_info').hide("slow"); 
      }
    );
    $("#tl-2004").hoverIntent(
      function () {
        $('#tl-2004_info').show("slow"); 
      }, 
      function () {
        $('#tl-2004_info').hide("slow"); 
      }
    ); 
    $("#tl-2005").hoverIntent(
      function () {
        $('#tl-2005_info').show("slow"); 
      }, 
      function () {
        $('#tl-2005_info').hide("slow"); 
      }
    );
    $("#tl-2006").hoverIntent(
      function () {
        $('#tl-2006_info').show("slow"); 
      }, 
      function () {
        $('#tl-2006_info').hide("slow"); 
      }
    );
    $("#tl-2007").hoverIntent(
      function () {
        $('#tl-2007_info').show("slow"); 
      }, 
      function () {
        $('#tl-2007_info').hide("slow"); 
      }
    ); 
    $("#tl-2008").hoverIntent(
      function () {
        $('#tl-2008_info').show("slow"); 
      }, 
      function () {
        $('#tl-2008_info').hide("slow"); 
      }
    );
    $("#tl-2008-ws").hoverIntent(
      function () {
        $('#tl-2008-ws_info').show("slow"); 
      }, 
      function () {
        $('#tl-2008-ws_info').hide("slow"); 
      }
    );
	 $("#tl-2009").hoverIntent(
      function () {
        $('#tl-2009_info').show("slow"); 
      }, 
      function () {
        $('#tl-2009_info').hide("slow"); 
      }
    ); 
	 $("#tl-2010").hoverIntent(
      function () {
        $('#tl-2010_info').show("slow"); 
      }, 
      function () {
        $('#tl-2010_info').hide("slow"); 
      }
    ); 
});

