			jQuery(document).ready(function() {
			    jQuery('#photogallery').jcarousel({
			        vertical: true,
			        scroll: 3
			    });
			    
			    
			    jQuery('#photogallery a').click(function(){
			    	jQuery('.gallery-pic img').replaceWith('<img src="' + jQuery(this).attr("href") + '" alt="' + jQuery(this).attr("title") + '" />');
			    	
			    	jQuery('.gallery-desc').text(jQuery(this).attr("title"));
			    	return false;
			    });
			});