function attachHover() {
   jQuery('.ui-state-default').hover(

					function () { jQuery(this).addClass('ui-state-hover'); },
					function () { jQuery(this).removeClass('ui-state-hover'); }
				)
   //			.mousedown(function () { jQuery(this).addClass('ui-state-active'); })
   //				.mouseup(function () { jQuery(this).removeClass('ui-state-active'); })
   //				.mouseout(function () { jQuery(this).removeClass('ui-state-active'); })
};

function go(url) {

   location.href = url;
}
function ViewDialog(box) {
   jQuery(box).dialog({
      modal: true,
      resizable: false,
      height: 'auto',
      width:'auto',
      buttons: {
         "Ok": function () {
            jQuery(this).dialog("close");
         }
      }
   });
}
