
/*--------------------*/
var a=5;
function shoppingcat(){
  var content=document.getElementById("i-name-apply01");
  var key = document.getElementById("key");
  var b=content.style;
  var minheight=24;
  var maxheight=230;
  if(b.height==""||b.height==0)
    b.height=minheight;
  var c=parseInt(b.height);
  if(key.innerHTML=="+"){
    c+=a;
    b.height=c+"px";
    if(c<maxheight){
      setTimeout("shoppingcat();",1);
    }else{
      key.innerHTML="--";
    }
  }else{
    c-=a;
    b.height=c+"px";
    if(c>minheight){
      setTimeout("shoppingcat();",1);
    }else{
      key.innerHTML="+";
    }
  }
}
/*----------------------*/

var s=5;
function shoppingcat02(){
  var content=document.getElementById("i-name-apply02");
  var key02 = document.getElementById("key02");
  var t=content.style;
  var minheight=24;
  var maxheight=100;
  if(t.height==""||t.height==0)
    t.height=minheight;
  var h=parseInt(t.height);
  if(key02.innerHTML=="+"){
    h+=s;
    t.height=h+"px";
    if(h<maxheight){
      setTimeout("shoppingcat02();",1);
    }else{
      key02.innerHTML="--";
    }
  }else{
    h-=s;
    t.height=h+"px";
    if(h>minheight){
      setTimeout("shoppingcat02();",1);
    }else{
      key02.innerHTML="+";
    }
  }
}

/*----------------------*/

var s=5;
function shoppingcat03(){
  var content=document.getElementById("i-name-apply03");
  var key03 = document.getElementById("key03");
  var t=content.style;
  var minheight=24;
  var maxheight=310;
  if(t.height==""||t.height==0)
    t.height=minheight;
  var h=parseInt(t.height);
  if(key03.innerHTML=="+"){
    h+=s;
    t.height=h+"px";
    if(h<maxheight){
      setTimeout("shoppingcat03();",1);
    }else{
      key03.innerHTML="--";
    }
  }else{
    h-=s;
    t.height=h+"px";
    if(h>minheight){
      setTimeout("shoppingcat03();",1);
    }else{
      key03.innerHTML="+";
    }
  }
}

/*------------------*/

var s=5;
function shoppingcat04(){
  var content=document.getElementById("i-name-apply04");
  var key04 = document.getElementById("key04");
  var t=content.style;
  var minheight=24;
  var maxheight=280;
  if(t.height==""||t.height==0)
    t.height=minheight;
  var h=parseInt(t.height);
  if(key04.innerHTML=="+"){
    h+=s;
    t.height=h+"px";
    if(h<maxheight){
      setTimeout("shoppingcat04();",1);
    }else{
      key04.innerHTML="--";
    }
  }else{
    h-=s;
    t.height=h+"px";
    if(h>minheight){
      setTimeout("shoppingcat04();",1);
    }else{
      key04.innerHTML="+";
    }
  }
}

/*-------------------*/

var s=5;
function shoppingcat05(){
  var content=document.getElementById("i-name-apply05");
  var key05 = document.getElementById("key05");
  var t=content.style;
  var minheight=24;
  var maxheight=100;
  if(t.height==""||t.height==0)
    t.height=minheight;
  var h=parseInt(t.height);
  if(key05.innerHTML=="+"){
    h+=s;
    t.height=h+"px";
    if(h<maxheight){
      setTimeout("shoppingcat05();",1);
    }else{
      key05.innerHTML="--";
    }
  }else{
    h-=s;
    t.height=h+"px";
    if(h>minheight){
      setTimeout("shoppingcat05();",1);
    }else{
      key05.innerHTML="+";
    }
  }
}

