/*
@description jQuery Lightbox

@author	Victoria Chan
@created 2008-03

Notes: Requires jQuery 1.21 and jquery_lightbox.js
*/

jQuery(document).ready(function(){

	//this is already done by CSS, but we add this here for IE6 coz it's dumb
	jQuery('#matrix-table .steps-button .pop').hide();
	jQuery('#matrix-table .steps-button').hover(
      function (event) {
        jQuery(this).children('.pop').show();
         event.preventDefault();
      },
      function (event) {
        jQuery(this).children('.pop').hide();
        event.preventDefault();
      }
    );

  //stuff for expandable content on wide pages
	jQuery('#primary-content .expandable-content .expanded').hide();
	jQuery('#primary-content .expandable-content .expandable-link').toggle(
		function(event){
			jQuery(this).next('.expanded').show();
			event.preventDefault();
		},
		function(event){
			jQuery(this).next('.expanded').hide();
			event.preventDefault();
	});
});



