
$(document).ready(function()
{
  $('.item').click(function()
  {
    window.location=$('#link'+$(this).attr('id')).attr('href');
  });
} );
