$(document).ready(function() {
  Footer.init()
})

var Footer = {
  
  init: function() {
    $('#dialogs #login').dialog({
      bgiframe: true, autoOpen: false, modal: true
    })
    $('#dialogs #contact').dialog({
      bgiframe: true, autoOpen: false, modal: true, width: 450, resizable: false
    })
    $('#dialogs #promotion').dialog({
      bgiframe: true, autoOpen: false, modal: true, width: 700, height: 540, resizable: false
    })
  },
  
  contact: function() {
    $('#contact').dialog('open')
    $('#contact').html('')
    $('#contact').load('/contacts/new')
  },
  
  contact_submit: function() {
    $.post('/contacts', $("#contact form").serialize(), Footer.contact_results)
  },
  
  contact_results: function(result) {
    $('#contact').html(result)
  },
  
  login: function() {
    $('#login').dialog('open')
    $('#login').load('/footer/login.html')
  },
  
  promotion: function() {
    $('#promotion').dialog('open')
    p = new SWFObject('/swfs/promotion.swf', 'nav', 640, 480, 9)
    p.addParam('wmode', 'opaque')
    p.write('promotion')
  }
  
}