// JavaScript Document
$(window).load(function()
									{
										//this is intended to wait for all the images to load before running the slideshow
										init_slideshow();
										$("#culture_slideshow").css("display","block");
										//skinNav();
										$('#culture_slides').cycle('pause');
										//var startShow = function(){
											
										//}
									})
				
									init_slideshow = function()
									{
										$('#culture_slides').cycle({
											fx:'fade',
											timeout:6000,
											pager:'#slide_navigation',
											//next:'#next_btn',
											//prev:'#prev_btn',
											next:'#culture_nextBTN_half',//<a href="#" id="next_btn1">next</a>
											prev:'#culture_prevBTN_half',//<a href="#" id="prev_btn1">prev</a>											
											after:update_slide_caption,
											before:fade_slide_caption
										})
									}
		
									fade_slide_caption = function(next, previous)
									{
										caption_container = $('#project_caption')
										caption_container.fadeOut('1')
									}
		
									update_slide_caption = function(next, previous)
									{
										caption_container = $('#project_caption')
	 
										caption = $('span.slide_caption', previous)
										caption_container.fadeIn('1')
										caption_container.html(caption.html())
			
									}	