AdCottage = new function()
{
  this.init = function()
  {
    $( '.select-direction' ).click(
      function() {
        $.fancybox( '<div>' + $( '.direction-form' ).html() + '<div>' )
        AdCottage.init()
      }
    );
    $( '.select-direction-click' ).click( 
      function () { AdCottage.selectDirection( this.rel ) }
    )
  }
  this.selectDirection = function( direction )
  {
    $.fancybox.close();
    $( '#direction' ).val( direction );
    $( '.select-direction' ).html( direction );
  }
}
$(function() { AdCottage.init() } );