function firmaToTitel () {
var firma = document.getElementById('firma').value;
var title = document.getElementById('title');

	title.setAttribute('value', firma);
}

$(document).ready(function(){


	
	/* Tabs */
    $("#tab_cnt_2,#tab_cnt_3").css("display", "none");
    $("#tb1").addClass("hi");
	
	$("#tb1").click(function () {
		$("#tab_cnt_2,#tab_cnt_3").css("display", "none");
		$("#tab_cnt_1").show();
		$("#tb2,#tb3").removeClass("hi");
		$("#tb1").addClass("hi");
		event.preventDefault();
	});
	
	$("#tb2").click(function () {
		
		$("#tab_cnt_1,#tab_cnt_3").css("display", "none");
		$("#tab_cnt_2").show();
		$("#tb1,#tb3").removeClass("hi");
		$("#tb2").addClass("hi");
		event.preventDefault();
	});
	
	$("#tb3").click(function () {
		$("#tab_cnt_1,#tab_cnt_2").css("display", "none");
		$("#tab_cnt_3").show();
		$("#tb1,#tb2").removeClass("hi");
		$("#tb3").addClass("hi");
		event.preventDefault();
	});
	
	
	/* Tabellen streifen */  
	$(".stripe tr:even").addClass("alt");
	
	/* Slideshow */
	$("img.slide").css("display", "none");
	$("img.slide").fadeIn(1000);
	$("#logo").delay(1000).animate({"top": "+=49px"}, 1000);
	
	/* Dynamische Hoehe f. #main_column */
	hoehe = $("#left_column").outerHeight();
	hoehe_final = hoehe-45;
	$("#main_column").css("min-height", hoehe_final);
	
	/* Pull-Down Menu */
	$("#b_ueber_uns").mouseenter(function () { 
      $("#ueber_uns").show(); 
    });
    
    $("#b_partner").mouseenter(function () { 
      $("#partner").show(); 
    });
    
    $("#ueber_uns").mouseleave(function () { 
      $("#ueber_uns").hide(); 
    });
    
    $("#partner").mouseleave(function () { 
      $("#partner").hide(); 
    });
    
    $("#container").mouseleave(function () {
	  $("#ueber_uns").hide(); 
      $("#partner").hide(); 
    });
    
    $("#b_start,#b_presse,#b_kontakt").mouseenter(function () { 
      $("#ueber_uns").hide();
      $("#partner").hide();  
    });
    
    
    
});


