hs.registerOverlay({
	thumbnailId: null,
	overlayId: 'controlbar',
	position: 'top right',
	hideOnMouseOut: true
});
hs.numberOfImagesToPreload = 12;
hs.graphicsDir = '/elements/javascript/highslide/graphics/';
hs.captionEval = 'this.thumb.title';
hs.showCredits = false;
hs.outlineType = null;
hs.align = 'center';


$(window).ready(function () {
$('#moreimages').hide();    

	$("#viewmore").toggle(function(){
	    	$('#moreimages').slideDown('fast');     	
	    	$('#viewmore').text("");
	}, function(){
			$('#moreimages').slideUp('fast');     	
	    	$('#viewmore').text("Click here to view more images");
	});	
    	
});