
$(document).ready(function() {
	// Homepage Slide Show
	$('.slideshow').cycle({fx: 'fade'});
	
	// Color Box
	$(".big").colorbox(); // Images
	$(".frame").colorbox({width:"50%", height:"68%", iframe:true}); // E-news
	
	// Photo Gallery Slideshow
	$('#myGallery_1').galleryView({  
		show_panels: true, 
		show_captions: false, 
		show_filmstrip: true, 
		panel_width: 700, 
		panel_height: 467, 
		panel_scale: "nocrop", 
		transition_speed: 800, 
		transition_interval: 4000, 
		fade_panels: true, 
		frame_width: 60, 
		frame_height: 40, 
		filmstrip_position: "bottom", 
		pointer_size: 8, 
		frame_scale: "crop", 
		frame_gap: 5, 
		frame_opacity: 0.3, 
		easing: "swing", 
		nav_theme: "dark", 
		start_frame: 1, 
		pause_on_hover: false   
	});
});
	


