/* ================================================================ 
This copyright notice must be untouched at all times.
Stay Put!
Copyright (c) 2009 Stu Nicholls - stunicholls.com - all rights reserved.
=================================================================== */

$(function() {

  startPos = $("#sort").position().top;
  divHeight = $("#sort").outerHeight();

  $(window).scroll(function(e) {
    scrTop = $(window).scrollTop();

    if ((startPos - 5) < scrTop) {
      if ($.browser.msie && $.browser.version <= 6) {
        topPos = startPos + (scrTop - startPos) + 5;
        $("#sort").css("position", "absolute")
	.css("top", topPos + "px")
	.css('zIndex', '500')
      }
      else {
        $("#sort").css("position", "fixed")
	.css("top", "0px")
	.css("zIndex", "500")
      }
    }
    else {
      $("#sort").css("position", "static")
    }

  });

});
// テナント検索テンプレート振り分け用

$(function(){
$("div#sort select").change(function () {
if($("div.sort_1 select").val() =="6"){
$(this).after("<input id=\"temp\" type=\"hidden\" name=\"TYPE\" value=\"SEARCH_TENANT\" />");
$("form#Search").submit();
}
else{
$("#temp").remove();
$("form#Search").submit();
}

$("form#Search").submit();
});
});