window.addEvent("domready", function(){
//------------------------------------------------------------------------------------------//

$$(".bild")
    .setStyle("opacity", "0.5")
    .addEvents({
    "mouseover": function(){ 
        this.get("morph", { duration: 600, transition: Fx.Transitions.Bounce.easein }).start({ width:180 }); 
        this.setStyle("opacity", "1"); },
    "mouseout": function(){ 
        this.get("morph", { duration: 400, transition: Fx.Transitions.Bounce.easeOut }).start({ width:120 }); 
        this.setStyle("opacity", "0.5"); } 
});
 
$$("#Allgemeines").addEvents({ "click": function() { 
     $$("#agb").load("images/AGB-Allgemeines.htm"); $$(".tab").setStyle('backgroundColor','#b9b0ff'); this.setStyle('backgroundColor','#3b3484'); }});
$$("#Lieferbedingungen").addEvents({ "click": function() { 
     $$("#agb").load("images/AGB-Lieferbedingungen.htm"); $$(".tab").setStyle('backgroundColor','#b9b0ff'); this.setStyle('backgroundColor','#3b3484'); }});
$$("#Dienstleistungen").addEvents({ "click": function() { 
     $$("#agb").load("images/AGB-Dienstleistungen.htm"); $$(".tab").setStyle('backgroundColor','#b9b0ff'); this.setStyle('backgroundColor','#3b3484'); }});
$$("#Eigentumsvorbehalt").addEvents({ "click": function() {
     $$("#agb").load("images/AGB-Eigentumsvorbehalt.htm"); $$(".tab").setStyle('backgroundColor','#b9b0ff'); this.setStyle('backgroundColor','#3b3484'); }});
$$("#Provisionen").addEvents({ "click": function() {
     $$("#agb").load("images/AGB-Provisionen.htm"); $$(".tab").setStyle('backgroundColor','#b9b0ff'); this.setStyle('backgroundColor','#3b3484');}});
 
//------------------------------------------------------------------------------------------//
});

