$(document).ready(function() {
  // add makeHomePage onClick to any buttons with that id
  $("#makeHomePage").click(function() {
    makeHomePage();
  });
  // don't allow .docx uploads to the roster file archives
  $("#roster_upload_file").change(function() {
    if(this.value.search(/\.docx$/) != -1) {
      $("#roster_upload_error").text("Word 2007 (.docx) files not supported.  Please save in Word 97-2003 (.doc) format.");
      this.value = "";
    }
  });
});

function makeHomePage() 
{
  if($.cookies.test()) {
    page = window.location.pathname;

    // remove leading slash - it will be prepended to the cookie value when used
    if(page.indexOf('/') == 0) {
      page = page.substring(1);
    }

    $.cookies.set('rjcHomePage', page, {hoursToLive: 99999});
  }
  else {
    alert("Sorry, changing your home page requires cookies to be enabled.");
  }
}

