// ALL THE MAGICS

$(function(){
	
	// JUST FOR THE LANGUAGE SELECTION
	$('.sprache').click(function(){
        var css = $('#l_choose').css('top');
	
        if(css == '-182px')
		{
        	$('.language').show();
			$('#l_choose').animate({top: '0px'}, 500, function(){
				$('.language').show();
			});
        }
		else
		{
        	$('#l_choose').animate({top: '-182px'}, 500, function(){
				$('.language').hide();
			});	
		}

	});
	
	// CLICK ON ENLISH
	$('.english').click(function(){
		document.location.href = BOOT.base + 'en/';
	});
	// CLICK ON GERMAN
	$('.german').click(function(){
		document.location.href = BOOT.base + 'de/';
	});
	

	// TOP MENU
	 $('.show').click(function(){
            $('#hide').animate({
                top: '0px'
            }, {
                queue: false,
                duration: 500
            });
            $('.show').hide();
            $('.hide').show();
		});
        
        $('.hide').click(function(){
            $('#hide').animate({
                top: '-170px'
            }, {
                queue: false,
                duration: 250
            });
            $('.show').show();
            $('.hide').hide();

			$('#l_choose').animate({top: '-182px'}, 500, function(){
				$('.language').hide();
			});
        });

		// SUBMIT
		$('.submit').click(function(){
			$(this).parent().submit();
		});
			
			$('.submit_contact').click(function(){
				$('#contact').submit();
			});
			
			$('.submit_contact_tel').click(function(){
				$('#contact_tel').submit();
			});
});




