$(document).ready(function(){
$("a.one").hover(function() {
  $("img.one").toggle();
});
$("a.two").hover(function() {
  $("img.two").toggle();
});
$("a.three").hover(function() {
  $("img.three").toggle();
});
$("a.four").hover(function() {
  $("img.four").toggle();
});
$("a.five").hover(function() {
  $("img.five").toggle();
});
$("a.six").hover(function() {
  $("img.six").toggle();
});
$("a.seven").hover(function() {
  $("img.seven").toggle();
});
$("a.eight").hover(function() {
  $("img.eight").toggle();
});
$("a.nine").hover(function() {
  $("img.nine").toggle();
});
$("a.ten").hover(function() {
  $("img.ten").toggle();
});
});

