/* Premium Suspension Hover Image */

$(document).ready(function() { 
  $('.premium').hover(function() { 
    $('#premium_hover').fadeIn(); 
  }, function() { 
    $('#premium_hover').fadeOut(); 
  }); 
}); 

/* Tandem Hover Image */

$(document).ready(function() { 
  $('.tandem').hover(function() { 
    $('#tandem_hover').fadeIn(); 
  }, function() { 
    $('#tandem_hover').fadeOut(); 
  }); 
}); 

/* 20" Hover Image */

$(document).ready(function() { 
  $('.twenty').hover(function() { 
    $('#twenty_hover').fadeIn(); 
  }, function() { 
    $('#twenty_hover').fadeOut(); 
  }); 
}); 

/* 24" Hover Image */

$(document).ready(function() { 
  $('.twentyfour').hover(function() { 
    $('#twentyfour_hover').fadeIn(); 
  }, function() { 
    $('#twentyfour_hover').fadeOut(); 
  }); 
}); 

/* Child Seat Hover Image */

$(document).ready(function() { 
  $('.childseat').hover(function() { 
    $('#childseat_hover').fadeIn(); 
  }, function() { 
    $('#childseat_hover').fadeOut(); 
  }); 
}); 

/* Tag Hover Image */

$(document).ready(function() { 
  $('.tag').hover(function() { 
    $('#tag_hover').fadeIn(); 
  }, function() { 
    $('#tag_hover').fadeOut(); 
  }); 
}); 

/* Buggy Hover Image */

$(document).ready(function() { 
  $('.buggy').hover(function() { 
    $('#buggy_hover').fadeIn(); 
  }, function() { 
    $('#buggy_hover').fadeOut(); 
  }); 
}); 

/* Dog Trailer Hover Image */

$(document).ready(function() { 
  $('.dog').hover(function() { 
    $('#dog_hover').fadeIn(); 
  }, function() { 
    $('#dog_hover').fadeOut(); 
  }); 
}); 