$(document).ready(function(){
	var open1=false;
    $("#link1").click(function(){
		if(!open1) {
      $("#ss-menu1").animate({"height":"100px"}, "slow");
	  open1=true;
		}
		else {
			 $("#ss-menu1").animate({"height":"0px"}, "slow");
	  open1=false;
		}
    });

		var open2=false;
    $("#link2").click(function(){
		if(!open2) {
      $("#ss-menu2").animate({"height":"100px"}, "slow");
	  open2=true;
		}
		else {
			 $("#ss-menu2").animate({"height":"0px"}, "slow");
	  open2=false;
		}
    });
	
	var open3=false;
    $("#link3").click(function(){
		if(!open3) {
      $("#ss-menu3").animate({"height":"100px"}, "slow");
	  open3=true;
		}
		else {
			 $("#ss-menu3").animate({"height":"0px"}, "slow");
	  open3=false;
		}
    });
	
	var open4=false;
    $("#link4").click(function(){
		if(!open4) {
      $("#ss-menu4").animate({"height":"50px"}, "slow");
	  open4=true;
		}
		else {
			 $("#ss-menu4").animate({"height":"0px"}, "slow");
	  open4=false;
		}
    });
	
	var open5=false;
    $("#link5").click(function(){
		if(!open5) {
      $("#ss-menu5").animate({"height":"70px"}, "slow");
	  open5=true;
		}
		else {
			 $("#ss-menu5").animate({"height":"0px"}, "slow");
	  open5=false;
		}
    });

});

