jQuery(document).ready(function(){
		
	  //Hoehe des Containers ermitteln	
	  var he = jQuery("#container").css("height");
	
	  //Anhand der Hoehe des Containers positionieren
	  //wir den Footer ganz unten
      jQuery("div#footer_bottom").css("position","absolute");
	  jQuery("div#footer_bottom").css("top",he);
	  jQuery("div#footer_bottom").css("left","0px");
	  jQuery("div#footer_bottom").css("margin-top","-30px");
	  jQuery("div#footer_bottom").css("width","100%");

 
	
});