$(function(){
	$("#aboutgreencomfort").css("display","none");
    
    $("#lnkAboutGC").toggle(
  function () {
    $("#aboutgreencomfort").slideDown();
  },
  function () {
    $("#aboutgreencomfort").slideUp();
  }
);

});