jQuery(document).ready(function(){
		jQuery('.onlist > *').css({"display" : "none"});
		jQuery('.tabber-title li:first').addClass('selected'); // Add .selected class to first tab on load
		jQuery('.onlist > *:first').fadeIn(500);
 
		jQuery('.tab-post-lists > *').css({"display" : "none"});
		jQuery('#post-tabber-hand li:first').addClass('tab-selected'); // Add .selected class to first tab on load
		jQuery('.tab-post-lists > *:first').fadeIn(500); 

       jQuery('.tabber-title li a').click(function(evt){ // Init Click funtion on Tabs
        
            var clicked_tab_ref = jQuery(this).attr('href'); // Strore Href value
            
            jQuery('.tabber-title li').removeClass('selected'); //Remove selected from all tabs
            jQuery(this).parent('li').addClass('selected');
            jQuery('.onlist > *').slideUp().delay(800);

                    jQuery('.onlist ' + clicked_tab_ref).slideDown(500);
					 jQuery('.onlist').css('padding', '10px');
             evt.preventDefault();

        });
		
       jQuery('#post-tabber-hand li a').click(function(evt){ // Init Click funtion on Tabs
        
            var clicked_tab_ref_post = jQuery(this).attr('href'); // Strore Href value
            
            jQuery('#post-tabber-hand li').removeClass('tab-selected'); //Remove selected from all tabs
            jQuery(this).parent('li').addClass('tab-selected');
            jQuery('.tab-post-lists > *').slideUp().delay(500);

                    jQuery('.tab-post-lists ' + clicked_tab_ref_post).slideDown(500);

             evt.preventDefault();

        });		
    
});