     function SelectedNavigation(object)
       {
          object.style.opacity = .7;
          object.style.bgcolor = "black";
	  object.style.filter = 'alpha(opacity=70)';
	  object.style.zoom = 1
          }

     function DeSelectedNavigation(object)
       {
          object.style.opacity = 1.0;
          object.style.bgcolor = "transparent"
	  object.style.filter = 'alpha(opacity=100)';
	  object.style.zoom = 0
          }

/* The following was supplied by FaceBook for their share button */
     function fbs_click() {
      u=location.href;t=document.title;
      window.open('http://www.facebook.com/sharer.php?u='+
	encodeURIComponent(u)+'t='+
	encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
      return false;}

