$(document).ready(function(){
			// Lets make the top panel toggle based on the click of the show/hide link	
            $(".sociable ul").hide();
			
			$(".sociable_tagline").click(function(){
                // Toggle the bar up 
                $(".sociable ul").slideToggle();	
                // Settings
                var el = $(".shText");  
                // Lets us know whats inside the element
                var state = $(".shText").html();
                // Change the state  
                state = (state == 'Hide' ? 'Show' : 'Hide');					
                // Finally change whats insdide the element ID
                el.replaceWith(state); 
            }); // end sub panel click function
        }); // end on DOM
		

