/* Main navi */

var log = function(txt) {
	if (typeof console != 'undefined' && console != null) console.log(txt);
}

function dropNav(){
	// ' > ' wichtig damit nicht rekursiv auf alle listen angewandt
	var nav = $('ul.mainmenu > li');
	var c1 = $('li.c1').children('ul');
	var c0 = $('li.c0').children('ul');
	
	// set start values
	c0.css('z-index','100').hide();
	c1.css('z-index','100').show();
	
	nav.hover(function(){
		var t = $(this).children('ul');
		
		t.css('z-index', '101');
		t.stop(true, true).slideDown('fast', function(){
			log('finished --> DOWN');
		});

	}, function(){
		c1.css('z-index', '100');
		c0.slideUp('fast', function(){
			//c0.css('z-index', '50');
			//c0.addClass('border');
			log('finished --> UP');
		});
	});
	
	//$('div#header_content').text('Browserwidth: ' + $(window).width() + ' ---  Height: ' + $(window).height());
	
	var width = $(window).width();
	var height = $(window).height();
	/*
	if (width < 1190){
		$('body').css('background', 'url(fileadmin/img/bg_main.jpg) top center no-repeat #E6E2DF');
	}else if(width < 1280){
		$('body').css('background', 'url(fileadmin/img/bg_main2.jpg) top center no-repeat #FFFFFF');
	}else if(width > 1280){
		$('body').css('background', 'url(fileadmin/img/bg_main2.jpg) top center no-repeat #000000');
	}
	*/
	
	return false;
	
	
}

jQuery(function(){dropNav();});




