$(function(){var current_tab=1;var tab_count=1;var tab_auto=0;$('#tab_content li').each(function(){$(this).attr('rel',tab_count);if(tab_count!=current_tab)$(this).hide();else $(this).show();tab_count++;});tab_count=1;function tab_gogo(this_tab_id){var tab=$('#home_tabs li a[rel='+this_tab_id+']');if(current_tab){$('#tab_content li[rel='+current_tab+']').fadeOut();}$('#tab_content li[rel='+this_tab_id+']').fadeIn();$('#home_tabs li.current').removeClass('current');$(tab).parent('li').addClass('current');current_tab=this_tab_id;};$('#home_tabs li a').each(function(){$(this).attr('rel',tab_count);if(tab_count==current_tab)$(this).parent('li').addClass('current');$(this).click(function(){var this_tab_id=$(this).attr('rel');tab_auto=0;tab_gogo(this_tab_id);return false;});tab_count++;});if(tab_auto){function tab_auto_gogo(){if(!tab_auto)return;var this_current=current_tab;if(this_current>=$('#home_tabs li a').size())this_current=1;else this_current++;tab_gogo(this_current);setTimeout(tab_auto_gogo,tab_auto*1000);};setTimeout(tab_auto_gogo,tab_auto*1000);}});
