// <![CDATA[
window.addEvent('domready', function(){
  // If bottom of the footer is above the bottom of the window...
  if($E('#footer').getCoordinates().bottom < Window.getHeight()) {
    // Alter styles to push footer to bottom of window
    $E('#footer').setStyles({
      'position':'absolute',
      'bottom': '0',
      'left': '0',
      'margin':'0',
      'padding':'0',
      'width': '100%',
      'height': '277px'
    });
    $E('#footer ul').setStyles({
      'position':'absolute',
      'bottom': '20px',
      'left': '145px',
      'right': '5px'
    });
  }
  // Add MooTools smooth scrolling
  new SmoothScroll();
});
var RecaptchaOptions = {
   theme : 'blackglass'
};
// ]]>