$(document).ready(function() {

  $('.quotation-block').corner();

  $('.module-subtitle').hide();
  $('#module1-content').hide();
  $('#module2-content').hide();
  $('#module3-content').hide();
  $('.modules-selector').hover(function (event) {
    $(this).addClass('modules-selector-hover');
    $(this).children('.module-subtitle').show();
  }, function (event) {
    $(this).removeClass('modules-selector-hover');
    $(this).children('.module-subtitle').hide();
  });
  $('.module1').bind('click', function () {
    $('.modules-selector').removeClass('modules-selector-selected');
    $(this).addClass('modules-selector-selected');
		$('#module-instructions').hide();
		$('#module1-content').show();
		$('#module2-content').hide();
		$('#module3-content').hide();
  });
  $('.module2').bind('click', function () {
    $('.modules-selector').removeClass('modules-selector-selected');
    $(this).addClass('modules-selector-selected');
		$('#module-instructions').hide();
		$('#module1-content').hide();
		$('#module2-content').show();
		$('#module3-content').hide();
  });
  $('.module3').bind('click', function () {
    $('.modules-selector').removeClass('modules-selector-selected');
    $(this).addClass('modules-selector-selected');
		$('#module-instructions').hide();
		$('#module1-content').hide();
		$('#module2-content').hide();
		$('#module3-content').show();
  });
  
  $('#program-dates').show();
  $('#program-fee').hide();
  $('#program-registration').hide();
  $('#contact-staff').show();
  $('#contact-faculty').hide();
  
  $('.selector').hover(function (event) {
    $(this).addClass('hover');
  }, function (event) {
    $(this).removeClass('hover');
  });
  $('.program-select-dates').bind('click', function () {
    $('.selector').removeClass('selected');
    $(this).addClass('selected');
		$('#program-dates').show();
		$('#program-fee').hide();
		$('#program-registration').hide();
  });
  $('.program-select-fee').bind('click', function () {
    $('.selector').removeClass('selected');
    $(this).addClass('selected');
		$('#program-dates').hide();
		$('#program-fee').show();
		$('#program-registration').hide();
  });
  $('.program-select-registration').bind('click', function () {
    $('.selector').removeClass('selected');
    $(this).addClass('selected');
		$('#program-dates').hide();
		$('#program-fee').hide();
		$('#program-registration').show();
  });
  $('.contact-select-staff').bind('click', function () {
    $('.selector').removeClass('selected');
    $(this).addClass('selected');
		$('#contact-staff').show();
		$('#contact-faculty').hide();
  });
  $('.contact-select-faculty').bind('click', function () {
    $('.selector').removeClass('selected');
    $(this).addClass('selected');
		$('#contact-staff').hide();
		$('#contact-faculty').show();
  });

  $('.leaf').hover(function(event) {
    if ($(this).children().attr("href") == ("/program_design")) {
     $(this).append("<ul class=\"moreinfo\"><li>Module I: Reflective Leadership</li><li>Module II: Connected Leadership</li><li>Module III: Catalytic Leadership</li></ul>");
    } else if ($(this).children().attr("href") == ("/program_information")) {
     $(this).append("<ul class=\"moreinfo\"><li>Dates and Locations</li><li>Program Fee</li><li>Registration Form</li></ul>");
    } else if ($(this).children().attr("href") == ("/contact_info")) {
     $(this).append("<ul class=\"moreinfo\"><li>Staff</li><li>Faculty</li></ul>");
    }
  }, function (event) {
   $('.moreinfo').hide();
  });
  
});


/* OLD OPTION 1 */
/*
  $('li.expanded ul').hide();
  $('li.expanded').hover(function (event) {
    $(this).children('ul').show('slow');
  }, function (event) {
    $(this).children('ul').hide();
  });
*/


/* OLD OPTION 2 */
/*
  $('li.expanded').hover(function (event) {
    if (event.target == this) {
      $('li.expanded ul').show('slow');
    }
  }, function(event) {
    if (event.target == this) {
      $('li.expanded ul').hide();
    }
  });
*/
