// ------------------ overImage jQuery(document).ready(function($) { $('a img,img.on,input.on').not(".except img").rollover(); }); // ------------------ add class $(function(){ //Oclass var _ex = ".except"; $('#container').each(function(){ $(this).find('dl:odd').not(_ex + " dl").addClass('even'); $(this).find('dl:even').not(_ex + " dl").addClass('odd'); }); $('ul').each(function(){ $(this).find('li:odd').not(_ex + " li").addClass('even'); $(this).find('li:even').not(_ex + " li").addClass('odd'); }); $('ol').each(function(){ $(this).find('li:odd').not(_ex + " li").addClass('even'); $(this).find('li:even').not(_ex + " li").addClass('odd'); }); $('table').each(function(){ $(this).find('tr:odd').not(_ex + " tr").addClass('even'); $(this).find('tr:even').not(_ex + " tr").addClass('odd'); }); $(':first-child').not(_ex + " *").addClass('firstChild'); $(':last-child').not(_ex + " *").addClass('lastChild'); });