$(document).ready(function(){
  var time = setInterval( hide, 9000);
  var i=1;

  function hide(){
      switch(i){
        case 1:
          $('#slide ul li.img1').animate({opacity:0.25, top:'250'}, 1000);
          var j=i+1;
          $('#slide ul li.img2').animate({opacity:1, top:'0'}, 1000);
          i=2;
          break;
        case 2:
          $('#slide ul li.img2').animate({opacity:0.25, top:'250'}, 1000);
          var j=i+1;
          $('#slide ul li.img3').animate({opacity:1, top:'0'}, 1000);
          i=3;
          break;
        case 3:
          $('#slide ul li.img3').animate({opacity:0.25, top:'250'}, 1000);
          var j=i+1;
          $('#slide ul li.img4').animate({opacity:1, top:'0'}, 1000);
          i=4;
          break;
        case 4:
          $('#slide ul li.img4').animate({opacity:0.25, top:'250'}, 1000);
          var j=i+1;
          $('#slide ul li.img1').animate({opacity:1, top:'0'}, 1000);
          i=1;
          break;
      }
  }
/*
  $('#content #main .cols img').animate({
    opacity:0.25
    }, 1000);

  $('#content #main .cols img').hover(function(){
    $(this).animate({
      opacity:1
    }, 1000);

  });

  $('#content #main .cols img').mouseout(function(){
    $(this).animate({
      opacity:0.25
    }, 1000);

  });
*/

/*
  $("#container #content #main div#links div.category").click(function(){
    $(this).animate({
      height:40, opaticy: .5
    }, 1000 );
  });
*/





});

































