function quickLinks(status){
  if (status == null){
    status="SHOW";
  }
  var hideLink = document.getElementById("hideLink");
  if (hideLink.innerHTML == "Hide" || status== 'HIDE'){
    hideLink.innerHTML = "Show";
    $.Storage.set("quickLink", "HIDE"); 
    $("#leftcontent").slideUp();
  }
  else{
    hideLink.innerHTML = "Hide";
    $.Storage.set("quickLink", "SHOW"); 
    $("#leftcontent").slideDown();
  }

  var rightWidth = $("#rightcontent").css('width');
  if (rightWidth == "560px") {
    $("#rightcontent").css('width','927px');
  }
  else{
    $("#rightcontent").css('width','560px');
  }
}
function showBlogTags(){
$("#blogHeader").toggle();
}

