    jQuery(document).ready(function($) {

      //Modal stuff
      $('a[rel*=facebox]').facebox({
        loading_image : '../images/facebox/loading.gif',
        close_image   : '../images/facebox/closelabel.gif'
      })


	  //Toggle of the production info, based on class so no need to define it for single ones
      $('.productioninfo').click(function(){

		$(this).parent().parent().children('.productioncontent').slideToggle('slow');


      });
	  
	  
	  	  //Toggle of the production info, based on class so no need to define it for single ones
      $('.peopleinfo').click(function(){

		$(this).parent().parent().children('.staff_content_container').slideToggle('slow');

      });

    })
