Skip to content

Instantly share code, notes, and snippets.

@cohitre
Created July 29, 2009 19:27
Show Gist options
  • Save cohitre/158343 to your computer and use it in GitHub Desktop.
Save cohitre/158343 to your computer and use it in GitHub Desktop.
$(function() {
$('#leftImage1On, #leftImage2On, #leftImage3On, #leftImage4On')
.hide().mouseout( function () {
var imageNum = '#' + $(this).attr('id') + 'On';
$(imageNum).hide();
});
$('#leftNavBox area').mouseover(function() {
var imageNum = '#' + $(this).attr('id') + 'On';
$(imageNum).show();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment