/*
 * Hide/Show Side Content Boxes
 * 
 */
var hideSides=function(c){defaults={hideIndicator:"&lsaquo;",showIndicator:"&rsaquo;",switchIndicators:true,tooltip:"Click to hide/show side bar",tooltipWidth:180,clickableSpacer:true};var a=$.extend(defaults,c),d;c=a.clickableSpacer?".LeftContentSpacer,.RightContentSpacer":".LeftContentSpacer a,.RightContentSpacer a";$(".LeftContentSpacer").html("<a>"+a.hideIndicator+"</a>");$(".RightContentSpacer").html("<a>"+(a.switchIndicators?a.showIndicator:a.hideIndicator)+"</a>");$(c).addClass("tooltip").attr({title:a.tooltip,rel:a.tooltipWidth}).click(function(){var b=a.clickableSpacer?".LeftContentSpacer":".LeftContentSpacer a";var e=(b=$(this).is(b)?true:false)?".LeftContentZone":".RightContentZone";if($(e).is(":hidden")){$(e).show();d=b||!a.switchIndicators?a.hideIndicator:a.showIndicator}else{$(e).hide();d=b||!a.switchIndicators?a.showIndicator:a.hideIndicator}$(this).html(d);return false});$(".LeftContentSpacer,.RightContentSpacer").hover(function(){$(this).addClass("hover")},function(){$(this).removeClass("hover")})};

