function power_on(bild) {
    bild.src = '/shared/bilder/buttons/' + bild.id + '.png';
}

function power_off(bild) {
    bild.src = '/shared/bilder/buttons/' + bild.id + '_off.png';
}

function click_it(bild) {
    bild.src = '/shared/bilder/buttons/' + bild.id + '_on.png';
}


function leereInhalt(obj) {
    obj.value = "";
}

//function playVideo(video, titel, breite, hoehe) {
//	Lightview.show({
//	  href: video,
//	  title: titel,
//	  rel: 'quicktime', // not required
//		  options: {
//		  width: breite,
//		  height: hoehe,
//	      autosize: true
//	      }
//	});
//}
//
//function hideDiv(id) {
//    $(id).hide();	
//}
//
//function showDiv(id) {
//    Lightview.show({
//	    href: id,
//	    rel: 'inline', // not required
//	        options: {
//	          width: 600,
//	          height: 400,
//	          scrolling: true,
//	          autosize: true,
//	          topclose: true
//	        }
//    });
//}
//
//document.observe('lightview:opened', function(event) {
//  $('username').focus();
//});
//
//
//function showURL(url)  {
//  Lightview.show({
//    href: url,
//    rel: 'ajax',
//    options: {
//      width: 500,
//      height: 500,
//      scrolling: true,
//      autosize: true,
//      topclose: true,
//      ajax: {
//       method: 'get'
//      }
//    }
//  });
//}

/*
function submitAjaxForm(event) {
  // block default form submit
  event.stop();   
  Lightview.show({
    href: '/register/',
    rel: 'ajax',
    options: {
      title: 'results',
      menubar: false,
      topclose: true,
      autosize: true,
      ajax: {
        method: 'post',
        parameters: Form.serialize('register_form') // the parameters from the form
      }
    }
  });
}*/
