$(document).ready(function () { $('.IE6 #navigation li').mouseenter(function () { $('ul', this).css('visibility', 'visible'); }); $('.IE6 #navigation li').mouseleave(function () { $('ul', this).css('visibility', 'hidden'); }); //rollover effect for images $('.hover').hover(function () { $(this).stop().animate( { opacity: 0.7 }, 200); }, function () { $('.hover').stop().animate( { opacity: 1 }, 200); }); //Adds First class to menu $(".menu ul li:first-child").addClass("first"); //Add a class name of "first" to the first selector $(".menu ul li:last-child").addClass("last"); //Add a class name of "last" to the last selector });