
// DomReady
window.addEvent('domready', function(){
   // ImageMenu
   var myMenu = new ImageMenu($$('#imageMenu a'),{openWidth:310,border:2,onOpen:function(e,i){showSubmenu(e,i);}}); 
   
    
	    
  
   // Submenüs  
   var yourSlides = $$('.submenu');
	 var togslide = $$('.tog');	
 
	 yourSlides.each(
				function(el, i){
    
				var slider = new Fx.Slide(el);
				slider.hide();
 
				togslide.each(
					function(elem, j){
						if ( j == i )
						elem.addEvent('click', function(){
							slider.toggle();
						});
 
						if (j != i)
						elem.addEvent('click', function(){
							slider.slideOut();
						});
					});			
				});
		
    
    		
		// Textfelder Content
    var mySlide1 = new Fx.Slide('textfeld_1');
		var mySlide2 = new Fx.Slide('textfeld_2');
		var mySlide3 = new Fx.Slide('button_1');
		var mySlide4 = new Fx.Slide('button_2');
		mySlide2.hide();
		mySlide4.hide();
		
    $('button_1').addEvent('click', function(e){
	     e = new Event(e);
	     mySlide1.toggle();
	     mySlide2.toggle();
	     mySlide3.toggle();
	     mySlide4.toggle();
	     e.stop();
    });
   
    $('button_2').addEvent('click', function(e){
	     e = new Event(e);
	     mySlide1.toggle();
	     mySlide2.toggle();
	     mySlide3.toggle();
	     mySlide4.toggle();
	     e.stop();
    });
   
   
   
});





// Submenue oeffnen nach Klick auf Image im Hauptmenue
function showSubmenu(e,i){

  document.getElementById('bar').className='bar_' + (i+1);
}


function goto_atka(){
   window.location.href = "index.php?article_id=2";
}

function show_atka(){
   document.getElementById('hover_atka').style.backgroundColor="#507089";
}

function hide_atka(){
   document.getElementById('hover_atka').style.backgroundColor="#e9e9e9";
}




function goto_topgreen(){
   window.location.href = "http://www.topgreen-gruendach.de/index.php";
}
function show_topgreen(){
   document.getElementById('hover_topgreen').style.backgroundColor="#4d8650";
}

function hide_topgreen(){
   document.getElementById('hover_topgreen').style.backgroundColor="#e9e9e9";
}


function goto_thermostruct(){
   window.location.href = "http://www.thermostruct.de/index.php";
}
function show_thermostruct(){
   document.getElementById('hover_thermostruct').style.backgroundColor="#993522";
}

function hide_thermostruct(){
   document.getElementById('hover_thermostruct').style.backgroundColor="#e9e9e9";
}


function goto_bevando(){
   window.location.href = "http://www.bevando.de";
}
function show_bevando(){
   document.getElementById('hover_bevando').style.backgroundColor="#541740";
}

function hide_bevando(){
   document.getElementById('hover_bevando').style.backgroundColor="#e9e9e9";
} 
