$(function(){
  $("input#email__sValue").defaultValue({value: "email address"});
  
  $(".modal").dialog({
    autoOpen: false,
    modal: true,
    resizable: false,
    draggable: false,
    width: 700,
    open: function(){
      $this = $(this);
      if($this.hasClass("has-accordion")) {
        $this.find(".accordion").accordion({ autoHeight: true });
      }
      if($this.hasClass("has-selectmenu")) {
        $this.removeClass("has-selectmenu");
        $this.find("select").selectmenu({style:'dropdown', width: 200});
      }
    }
  });
  
  $(".modal-open").click(function(){
    $modal = $($(this).attr("href"));
    
    $modal.dialog('open');
    
    return false;
  });
  
  $("#buy-now-button").button({
    icons: { primary: 'ui-icon-cart' }
  });
  $("#showings-button").button({
    icons: { primary: 'ui-icon-calendar' }
  });
  $("input[type=submit]").button();
});
