$(document).ready(function(){

  // -- Close button...
  //

  $("#close").click(function() {
    $(".advert").html('&nbsp;');
	$('.shadow').remove();
	$('#close').fadeOut(500);
    $("#result").close("slide", { direction: "up" }, 1000, function() {
      window.location = $("#close").attr('href');
    });
    $("iframe").animate( { top: "0px" }, 1000 );
    return false;
  });

  // -- iframe position relative to top-bar...
  //

  $(window).resize( function() {
    $("iframe").animate( {height: $(window).height() - $("#result").height() + 6 }, 0);
  });

  $(window).trigger('resize');
  // -- Search term pull-down...
  //

  $("#searchbox .control").click(function() {
    $("#searchbox").animate( { top: "-28px" }, 250, function() {
      $("#searchbox").animate( { width: "200px" }, 500, function() {
        $("#searchbox").animate( { top: "0px" }, 500);
      });
    });
    //$("#searchbox .terms").fade();
  });

});


