$(document).ready(function(){
			    
	$('.lightbox a').lightBox({	
		imageLoading: 'images/jquery_lightbox/lightbox-ico-loading.gif',
	imageBtnClose: 'images/jquery_lightbox/lightbox-btn-close.gif',
	imageBtnPrev: 'images/jquery_lightbox/lightbox-btn-prev.gif',
	imageBtnNext: 'images/jquery_lightbox/lightbox-btn-next.gif'
	});
	
	$('.theatre tr').mouseover(function() {
		$(this).addClass('over');})
		.mouseout(function() {
		$(this).removeClass('over');});
		
	$('.theatre tr:even').addClass('alt');
	
	$('.codeblock').prepend('<p class="nolrmp"><strong>please hover to expand</strong></p>');
		
	$('.codeblock').hover(function() {
        $(this).animate({ width: "740px"}, 400);
	    },
		function() {
        $(this).animate({ width: "490px" }, 400);
	});

});
