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

});


