$(function(){ $('#container').css('height', $('#container').height()+'px'); $('a, area').each(function(){ if($(this).attr('href').indexOf('sub01/') != -1) $(this).attr('href', $(this).attr('href').replace("sub01/", "sub01_b/")); else if($(this).attr('href').indexOf('sub02/') != -1) $(this).attr('href', $(this).attr('href').replace("sub02/", "sub02_b/")); else if($(this).attr('href').indexOf('sub02/') != -1) $(this).attr('href', $(this).attr('href').replace("sub02/", "sub02_b/")); else if($(this).attr('href').indexOf('sub03/') != -1) $(this).attr('href', $(this).attr('href').replace("sub03/", "sub03_b/")); else if($(this).attr('href').indexOf('sub04/') != -1) $(this).attr('href', $(this).attr('href').replace("sub04/", "sub04_b/")); else if($(this).attr('href').indexOf('sub05/') != -1) $(this).attr('href', $(this).attr('href').replace("sub05/", "sub05_b/")); else if($(this).attr('href').indexOf('sub06/') != -1) $(this).attr('href', $(this).attr('href').replace("sub06/", "sub06_b/")); }); $('.mOver').hover( function() { var src = $(this).attr('src'); var ftype = src.substring(src.lastIndexOf('.') , src.length); $(this).attr('src', src.replace(ftype, '_o'+ftype)); }, function() { var src = $(this).attr('src'); var ftype = src.substring(src.lastIndexOf('.') , src.length); $(this).attr('src', src.replace('_o'+ftype, ftype)); } ); $('#navigation .link > li > a').click(function(){ $('#navigation .link .sub').slideUp('fast'); $(this).next().slideDown('fast'); return false; }); $('#navigation .link').mouseleave(function(){ $('#navigation .link .sub').slideUp('fast'); }); $('#navigation .link .sub').mouseleave(function(){ $(this).slideUp('fast'); }); });