/*
 *  Page Specific Javascript
 */

/*______________________________________________________________________________
 *    page:  curriculum.html
 */

/* the page id num for the menu */
page_id = 4;

/* galleryview */
$(document).ready(function(){
  $('#belt_ranks').galleryView({
    panel_width: 881,
    panel_height: 700,
    frame_width: 61,
    frame_height: 51,
    transition_speed: 200,
    transition_interval: 0,
    background_color: 'transparent',
    caption_text_color: '#fff',
    overlay_text_color: '#fff',
    overlay_height: 52,
    overlay_opacity: 0.8,
    overlay_position: 'top',
    border: 'none',
    show_captions: false,
    fade_panels: true,
    easing: 'easeInOutQuad',
    pause_on_hover: true,
    nav_theme: 'light',
    filmstrip_position: 'top'
  });
});
/* tabify */
$(document).ready(function() {
  // set the width and height of the container
  var my_width  = 859;
  var my_height = 589;
  $(function() {$('#white').tabify({tc_width:my_width,tc_height:my_height});});
  $(function() {$('#yellow').tabify({tc_width:my_width,tc_height:my_height});});
  $(function() {$('#orange').tabify({tc_width:my_width,tc_height:my_height});});
  $(function() {$('#green').tabify({tc_width:my_width,tc_height:my_height});});
  $(function() {$('#purple').tabify({tc_width:my_width,tc_height:my_height});});
  $(function() {$('#blue').tabify({tc_width:my_width,tc_height:my_height});});
  $(function() {$('#brown').tabify({tc_width:my_width,tc_height:my_height});});
  $(function() {$('#red').tabify({tc_width:my_width,tc_height:my_height});});
});