$(document).ready(function(){ $('div.jqueryviews').hide(); $('div.jqueryviews:first-child').show(); $('ul.jqueryviews_tabs li:first-child').addClass('active'); var clickFunction = function() { var tabIndex = this.myTabIndex; $(this).parent().parent().parent().find('div.jqueryviews').hide(); $(this).parent().siblings().removeClass('active'); $(this).parent().addClass('active'); $(this).parent().parent().parent().find('div.jqueryviews:eq('+tabIndex+')').show(); return false; }; $('ul.jqueryviews_tabs').each(function(){ var i = 0; $(this).find('li a').each(function() { this.myTabIndex = i++; }); }); $('ul.jqueryviews_tabs li a').bind('click', clickFunction); });