$(document).ready(function(){
	var open1=false;
    $("#link1").click(function(){
		if(!open1) {
      $("#ss-menu1").animate({"height":"63px"}, "slow");
	  open1=true;
		}
		else {
			 $("#ss-menu1").animate({"height":"0px"}, "slow");
	  open1=false;
		}
    });
	
	
	
	
		var open2=false;
    $("#link2").click(function(){
		if(!open2) {
      $("#ss-menu2").animate({"height":"63px"}, "slow");
	  open2=true;
		}
		else {
			 $("#ss-menu2").animate({"height":"0px"}, "slow");
	  open2=false;
		}
    });
	
	
		var open3=false;
    $("#link3").click(function(){
		if(!open3) {
      $("#ss-menu3").animate({"height":"43px"}, "slow");
	  open3=true;
		}
		else {
			 $("#ss-menu3").animate({"height":"0px"}, "slow");
	  open3=false;
		}
    });


		var open4=false;
    $("#link4").click(function(){
		if(!open4) {
      $("#ss-menu4").animate({"height":"105px"}, "slow");
	  open4=true;
		}
		else {
			 $("#ss-menu4").animate({"height":"0px"}, "slow");
	  open4=false;
		}
    });

});


