﻿$(document).ready(function () {
	// main scroller
	$('#photoscroll').cycle({
		fx: 'scrollHorz',

		timeout: 7000,
		speed: 1500,
		prev: '#prev',
		next: '#next',
		nowrap: 0,
		easing: 'easeInOutCubic'
		
	});

	// lower menus
	$(function () {
		$('#LLselectedinfo').cycle({
			fx: 'fade',

			timeout: 0,
			speed: 300,
			nowrap: 1,
			startingSlide: 0
		});

		//Specialty button
		$('.gotoSpc').click(function () {
			$('#LLselectedinfo').cycle(2);
			$('#LLselectedinfo').css('border-bottom-style', 'solid');  // activate deviding line
			$('#LLselectedinfo').css('height', '250px');
			$('#LLselectedinfo').css('z-index', '20');
			$('#LocImage').attr('src', '...'); 		// reset Location image
			$('#fullbuttons').attr('class', 'hidethis');
			$('#buttontext').attr('class', 'hidethis');
			$('#Info').cycle(35); // blank slide
			return false;
		});

		//Name button
		$('.gotoName').click(function () {
			$('#LLselectedinfo').cycle(3);
			$('#LLselectedinfo').css('border-bottom-style', 'none'); // deactivate deviding line
			$('#LLselectedinfo').css('height', '650px'); 				  // change height for name list
			$('#LLselectedinfo').css('z-index', '25');
			$('#LocImage').attr('src', '...'); 		// reset Location image
			$('#fullbuttons').attr('class', 'hidethis');
			$('#buttontext').attr('class', 'hidethis');
			$('#Info').cycle(35); // blank slide
			return false;
		});
		
		//Location button
		$('.gotoLoc').click(function () {
			$('#LLselectedinfo').cycle(1);
			$('#LLselectedinfo').css('border-bottom-style', 'solid'); // activate deviding line
			$('#LLselectedinfo').css('height', '250px');
			$('#LLselectedinfo').css('z-index', '20');
			$('#fullbuttons').attr('class', 'hidethis');
			$('#buttontext').attr('class', 'hidethis');
			$('#Info').cycle(35); // blank slide
			return false;
		});
	});

	// specific site or specialty info
	$(function () {
		$('#Info').cycle({
			fx: 'fade',

			timeout: 0,
			speed: 500,
			nowrap: 1,
			startingSlide: 0


		});
	});

});
