$(document).ready(function() {
	
	// hides the slickbox as soon as the DOM is ready
  	$('#additionalPhotosbox').hide();
 	
	// shows the slickbox on clicking the noted link  
  	$('#additionalPhotos-show').click(function() {
    		$('#additionalPhotosbox').show('fast');
		return false;
  	});
 	
	// hides the slickbox on clicking the noted link  
  	$('#additionalPhotos-hide').click(function() {
    		$('#additionalPhotosbox').hide('fast');
    		return false;
  	});
 
 	// toggles the slickbox on clicking the noted link  
	$('#additionalPhotos-toggle').click(function() {
		$('#additionalPhotosbox').toggle(400);
		$('#additionalPhotos-toggle').hide('fast');
		return false;
	});

});

