			/*
			Licensed under http://creativecommons.org/licenses/by-sa/3.0/
			
			dc:title Mootools Footeristic
			cc:attributionName: Radek Mackowiak
			
			Dieses Werk steht unter einer 
			Creative Commons Namensnennung-Weitergabe unter gleichen Bedingungen 3.0 Unported Lizenz
			
			This work is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
			*/			
			
			if (navigator.appName == "Microsoft Internet Explorer") //IE
			{
				if (window.XMLHttpRequest) //IE 7 & 8 
				{
					var browserSpecificHeight = 17;		
				}
				else //IE 6
				{
					var browserSpecificHeight = 17;
				}
			}
			else if (window.devicePixelRatio)//Safari
			{
				var browserSpecificHeight = 12;
			}					 
			else//others
			{
	 			var browserSpecificHeight = 12;
			}		
			 
			function setFooter() 
			{
				var documentDimensions = $(window).getSize();
				var siteDimensions = $(window.document.body).getElement("div[class=page_margins]").getSize();
				if (siteDimensions.y < documentDimensions.y)
				{
					
					var col3_contentPadding = documentDimensions.y - siteDimensions.y;
					var col3_content = $("col3_content");
					col3_content.setStyle("padding-bottom", col3_contentPadding + browserSpecificHeight + "px");
				}
			}
			window.addEvent('domready', function() 
			{				
				setFooter();
			});// JavaScript Document
