// Script to reload IFrames for Slider Videos
$(document).ready(function() {
	
	//Hook into slideshow pager onclick function
	$('#nav a').click(function() {
  		
		//Loop through video iframes within slideshow
		jQuery.each($("#slideshow iframe"), function() {
			
			//If iframe css opacity = 1 (i.e the videos showing), then reload the iframe by reseting the src attribute
			if($(this).css('opacity') == 1){
				$(this).attr({
					src: $(this).attr("src")
				});				
			}						
		});		
	});				
});

