// JavaScript Document

$(document).ready(function() {
	$('#slideshowView').click(function(e){

		e.preventDefault(); 
		e.stopPropagation(); 
		
		/** create highslide object **/
		hs.htmlExpand(this, {
				 objectType: 'iframe',
				 width: 996,
				 objectHeight: 510,
				 objectLoadTime: 'after', 
				 allowWidthReduction: 1,
				 showCredits: false,
				 dimmingOpacity: 0.70,
				 align: 'center'
				}
		  );
	});	
});
