jQuery(document).ready(function(){
  jQuery("div#ctrl").click(function(){
    document.cookie = "show_promotions_box3=false; expires=11/07/2009 00:00:00; path=/";
    resize = jQuery("#promotions-box").css("height") == "350px" ? "45px" : "350px" ;
    if(jQuery("#promotions-box").css("height") == "350px"){
      opacitys = 0;
    }
    else {
      opacitys = 1;
    }
    // opacitys = $("#promotions-box").css("height") == "200px" ? 0 : 1;

    if(resize == "45px"){
      jQuery("#promotions-box").animate({
        height: resize,
        opacity: opacitys
      }, 200, function(){
        jQuery("#promotions-box").css("background", "url(/sale_box_graphics/small.jpg?2321) no-repeat");
        jQuery("#promotions-box").animate({
          opacity: 1
        }, 500)
      });
    }
    else {
      jQuery("#promotions-box").animate({
        opacity: 0      
      }, 100, function(){
        jQuery("#promotions-box").css("background", "url(/sale_box_graphics/Drop-Down-Ad.jpg?2341) no-repeat");
        jQuery("#promotions-box").animate({
          height: resize,
          opacity: opacitys
        }, 400)
      });
    }
  });
})
