$(document).ready(function() { colorpages_show(1,null); }); function colorpages_registerClickEvent() { $(".color_btn").bind("click",function() { var id=$(this).parents('span').attr('id'); colorpages_putBackLink(id); var i=id.replace(/btn_/g,''); colorpages_show(i); }); } function colorpages_putBackLink(btn_num) { $(".color_pages").each(function() { if($(this).attr('id')!=btn_num) { var i=$(this).attr('id').replace(/btn_/g,''); $(this).html(''+i+''); } }); } function colorpages_show(num_page){ $("#btn_"+num_page).html(num_page); $(".color_pages").each(function() { var i=$(this).attr('id').replace(/btn_/g,''); $('#colorpages_content'+i).hide(); }); $('#colorpages_content'+num_page).fadeIn("slow"); colorpages_registerClickEvent(); }