    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      $('.panelinfo').click(function(){				var current = $(this).parent().parent().children('.hp_panel_info').css('left');		$(this).parent().parent().children('.hp_panel_info').animate({ left: current == '130px' ? -650: 130})      });    })	
