$(document).ready(function(){ $('#menu img').mouseover(function() { $(this).attr('src',$(this).attr('src').replace('.jpg','-hover.jpg')); }); $('#menu img').mouseout(function() { $(this).attr('src',$(this).attr('src').replace('-hover.jpg','.jpg')); }); if ( $("#videos").length == 0 ) { $("#videos-link").hide(); $("#no-videos").hide(); } if ( $("#photos").length == 0 ) { $("#photos-link").hide(); } if ( $("#faqs").length == 0 ) { $("#faqs-link").hide(); } if ( $("#prep").length == 0 ) { $("#prep-link").hide(); } });