$(document).ready(function(){
	
	// Image slideshow
	$('.gallery').each(function(){

		if($(this).hasClass('autoplay') === false)
		{
			var autostop = true;
			var autostopCount = 1;
		}
		else
		{
			var autostop = false;
			var autostopCount = 0;
		}
		
		$(this)
			.find('.gallery-images')
			.after('<div class="gallery-nav"><div class="indicator"></div><a class="next">Next Image</a><a class="prev">Previous Image</a></div>')
			.cycle({
				fx:'fade',
				next: $(this).find('.next'),
				prev: $(this).find('.prev'),
				pager: $(this).find('.indicator'),
				autostop:autostop,
				autostopCount:autostopCount
			});
			
		$(this).addClass('active');
	
	});

	$("form select[name=practice] option").each(function(index) {
		$option = $(this);
		if($option.attr("data-id") == window.location.hash.substr(1))
		$option.attr('selected', 'selected');
	});
	// console.log(window.location.hash.substr(1));

	$("#view-table").fancybox({
		'scrolling'		: 'no',
		'titleShow'		: false,
		'padding'		: 20
	});
	
	
	// Event Partners Slider
	$('.event-partners .partners').cycle({ 
		fx:    'fade',
		timeout: 6000,
		speed: 1000
	});
	
	

});
