// JavaScript Document
$(document).ready(function(){
				$("#mainContainer.vertical").hide();
				$("#arrows a.previous").hide();
				$('.strip_of_thumbnails.1 div a').lightBox({fixedNavigation:true});
				$("#arrows a.next").click(function(event){ 
						$(".strip_of_thumbnails.1").fadeOut("slow",function () {
								$("#mainContainer").removeClass("horizontal").addClass("vertical");
								$("#mainContainer.vertical #panel_one #thumbs").css({'height' : '418px'});
        $("#mainContainer.vertical #panel_one #thumbs").animate( {height:"618px"},{queue:false, duration:"normal"} );
								$(".strip_of_thumbnails.2").fadeIn("slow");
      });																							
						$("#arrows .next").hide();	
						$('.strip_of_thumbnails.2 div a').lightBox({fixedNavigation:true});
						$("#arrows a.previous").show();
						// Stop the link click from doing its normal thing
						return false;
				});
				$("#arrows a.previous").click(function(event){
						$(".strip_of_thumbnails.2").fadeOut("slow",function () {
								$("#mainContainer").removeClass("vertical").addClass("horizontal");
								$("#mainContainer.horizontal #panel_one #thumbs").css({'height' : '618px'});
        $("#mainContainer.horizontal #panel_one #thumbs").animate( {height:"418px"},{queue:false, duration:"normal"} );
								$(".strip_of_thumbnails.1").fadeIn("slow");
      });
						$("#arrows a.previous").hide();
						$("#arrows a.next").show();
						$('.strip_of_thumbnails.1 div a').lightBox({fixedNavigation:true});
						// Stop the link click from doing its normal thing
						return false;
				});
		});