/*-----------------------------------------
 
 copyright 2009 by mmc
 
 Version: 1.0
 
 Author: Georg Paul
 
 Author URI: http://www.mmc-agentur.at
 
 -------------------------------------------*/



$(document).ready(function(){

	// Startseiten Fade
	$('.layout_1 #visual ul').innerfade({
		animationtype: 'fade',
		speed: 1200,
		timeout: 5000,
		type: 'random'
	});
	$('.layout_1 #visual ul').css("overflow", "visible");

	
	// drop down menue
	var dropDownBtn = '<a id="drop_down_btn" href="#" title="'+ showLabel +'">'+ showLabel +'</a>';
	
	
	$('#main_nav').after(dropDownBtn);
	
	$('#drop_down_btn').bind('click', function(event){
		event.preventDefault();				
		
		
		$(this).toggleClass('expanded');
		
		if ($(this).html() == showLabel) {
			$(this).html(hideLabel);			
			$(this).attr('title', hideLabel);
		}
		else {
			$(this).html(showLabel);
			$(this).attr('title', showLabel);
		}
		
		$('#main_nav > li').find('a:first').each(function(){
			var childWidth = $(this).width() + 48;
			//alert(childWidth);
			$(this).nextAll('ul').css('width', childWidth);
		})
		if ($(this).hasClass('expanded')) {
			$('#main_nav').css({
				'width': '870px',
				'left': '80px'
			})
		}
		else {
			$('#main_nav').css({
				'width': '625px',
				'left': '325px'
			})			
		}					
		$('#main_nav').find('ul').toggle();
		$('#main_nav').find('li.active').removeClass('active');
		$('#main_nav').toggleClass('mini_sitemap');
	})

});

