// JavaScript Document
String.prototype.GetRequest = function(name)
{
    var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");
    var r = this.substr(this.indexOf("\?")+1).match(reg);
    if (r!=null) return unescape(r[2]); return null;
}

$(document).ready(function(){
  if(!selectBar){
     selectBar = $("#obj0");
  }
  selectBar.css("background","url(../images/Obg.jpg)");
});
function SetBar(o){
  if(selectBar){
    selectBar.css("background","url()");
  }
  selectBar = $(o);
  selectBar.css("background","url(../images/Obg.jpg)");
}
