$(document).ready(function() {
//hover for main logo
$('#homeImg img').hover(function() {
  $(this).addClass('homeImghover');
}, function() {
  $(this).removeClass('homeImghover');
})

})
