$(document).ready(function() {	
		
		// Nav1 in der Mitte Spalten
		$('.nav1_ul li').each(function(){ 
			if($(this).text() == "Produkte"){
				$(this).addClass('nav1_split');
			}
		});		
		
		// Verbreiterung des Content-Bereichs, falls keine Boxen vorhanden sind.
		if($('#content_right').length != 0){
			if($('#content_right').is(':empty') && $('#right_container_body').css('display') == 'none') {
				if($('#nav2').is(':empty') && $('.mini_container').css('display') == 'none'){
					$('#left_container').remove();
					$('#right_container').remove();	
					$('#center_container').css({width: '944px', margin: '0', padding: '0 20px'});	
				}else {
					$('#right_container').remove();	
					$('#center_container').css({width: '710px'});
				}				
			}else {
				if($('#nav2').is(':empty') && $('.mini_container').css('display') == 'none'){
					$('#left_container').remove();
					$('#center_container').css({width: '710px', margin: '0', padding: '0 20px'});	
				}
			}
		}
		
		// Newsansicht auf der Startseite bearbeiten
		$('.news-latest-container').children(':nth-child(2)').css({margin: '0 0 0 52px'})
		
		// Nav0 soll nicht angezeigt werden.
		if($('#nav2_container h5').html() == 'Nav0'){
			$('#nav2_container h5').remove();
		}
		
		// Wenn die nav2 keine Elemente hat, soll der ganze Container entfernt werden.
		/*if($('#nav2').is(':empty') && $('.mini_container').css('display') == 'none'){
			$('#left_container').remove();	
			$('#center_container').css({width: '944px', margin: '0', padding: '0 20px'});	
		}*/
						
		// Bilder in der rechten Box sollen auf eine Breite von 149px beschraenkt sein.				
		$('.box_right_content img').css({'max-width':'149px'});
		
		// Language Selector
		
		$('#languageContainer').hide();
		
		$('#lang_button').bind('mouseover', function(){
			$('#languageContainer').show();
		});
		
		$('.languagesBox').bind('mouseleave', function(){
			$('#languageContainer').hide();
		});
		
		$('.languagesBox a').click( function(){
			var target = $(this).attr('href') ;
	
			if ( target == 'sk/home.html'){
				window.location.href = 'http://www.dreizler.com/de/mcms.php?_oid=4d460dd-a0de-4c36-0c1d-80ad3bf923fe0';
			
			} else if ( target == 'ru/home.html'){
				window.location.href = 'http://www.dreizler.com/de/mcms.php?_oid=e23878f-8635-901a-306c-a370450776143';
			
			} else if ( target == 'cn/home.html'){
				window.location.href = 'http://www.dreizler.com/de/mcms.php?_oid=9e0e270-fc73-c10c-8bbc-177349fa45e28';
			
			} else if ( target == 'fr/home.html'){
				window.location.href = 'http://www.dreizler.com/de/standorte/frankreich.html';
			
			} else if ( target == 'nl/home.html'){
				window.location.href = 'http://www.dreizler.nl/';
			
			} else {
				window.location.href = target;
			}

			return false;
		});
	
});
