/**
 * WPSidebar Hide and Show has been developed by Atticmedia and authored by Courtney Daryanani
 *
 * WPSidebar Hide and Show (c) 2007 Atticmedia and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
 
 
//WPSidebar funtion depends on if element is shown or hidden 
function WPSidebarSH(obj) {
var el = document.getElementById(obj);
if ( el.style.display != 'none' ) {
el.style.display = 'none';
}
else {
el.style.display = '';
}
}

