
// var info = Browser.Engine.name + ' ' + Browser.Engine.version;
// document.write( info );


window.addEvent('domready', function() {
  
  // Ändern einer CSS Klassenzuweisung
	$('conContentDataHeadLinks').addEvent('mouseover', function(e) {
		e.stop();
		// Changes the element's style to .myClass defined in the CSS
		$('conContentDataHeadLinks').morph('.conContentDataHeadLinks_open');
	});
	
	$('conContentDataHeadLinks').addEvent('mouseout', function(e) {
		e.stop();
		// Changes the element's style to .myClass defined in the CSS
		$('conContentDataHeadLinks').morph('.conContentDataHeadLinks');
	});
	
	/**
	$('modelljahr_zurueck').addEvent('mouseover', function(e) {
		e.stop();
		// Changes the element's style to .myClass defined in the CSS
		$('modelljahr_zurueck').morph('.newer_morph');
	});
	
	$('modelljahr_zurueck').addEvent('mouseout', function(e) {
		e.stop();
		// Changes the element's style to .myClass defined in the CSS
		$('modelljahr_zurueck').morph('.newer_reset');
	});
	

  $('haendler_laden').addEvent('click', function(e) {
  		e.stop();
  		$('vertragshaendler').innerHTML = new Ajax( 'http://www.moto-resort.de/ajax.php',{
        data : {
          action : 'haendler',
          plz : '69412',
          umkreis : '50'
        }
      });
  	});
  **/

});