            $(function() {
                $('#biog').showhide({
                // Declaring a custom target
                 target_obj: null, // An optional string of a jQuery object that will be show/hidden. 
                 focus_target: null, // An optional target jQuery object to focus text onto when showing the hidden element. 
                 default_open: false, // If true, the target will be show, if false it will be hidden by default. This is overridden by the cookie, if it is set. 
                 show_class: 'show', // Class name to get applied to the link that shows the target. 
                 hide_class: 'hide', // Class name to get applied to the link that hides the target. 
                 plus_class: 'plus', // Class name to get applied to the link that indicates it is expandable. 
                 plus_text: 'View biography', 
                 minus_class: 'minus', // Class name to get applied to the link that indicates it is contractable. 
                 minus_text: 'Hide biography', 
                 use_cookie: false, // If true, use a cookie to store the last chosen state. If false, do not use a cookie. 
                 cookie_expires: 365, // Number of days until cookie expires 
                 cookie_name: 'show_target' // A name for the cookie, this must be unique. 
    			});
    			
    			 
    		 });
