
			$(document).ready(function() {
				// thumbnail sliders
				//Full Caption Sliding (Hidden to Visible)
				$('.thumbnail.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:110});
				}, function() {
					$(".cover", this).stop().animate({top:'131px'},{queue:false,duration:170});
				});
				//Caption Sliding (Partially Hidden to Visible)
				$('.thumbnail.caption').hover(function(){
					$(".cover", this).stop().animate({top:'100px'},{queue:false,duration:110});
				}, function() {
					$(".cover", this).stop().animate({top:'115px'},{queue:false,duration:170});
				});
			});
			$(document).ready(function() {
				// Work Single Page Slideshow
				$('#myGallery').after('<div id="nav" class="nav">').cycle({
					fx:     'fade',
					speed:  '400',
					timeout: 6000,
					pager:  '#nav',
					pagerEvent: 'mouseover',
					after: function() { if (window.console) console.log(this.src); }
				});
				// Home Page Slideshow
				$('#mainTease').after('<div id="nav" class="nav">').cycle({
					fx:     'fade',
					speed:  '100',
					timeout: 6000,
					pager:  '#nav',
					pagerEvent: 'mouseover',
					after: function() { if (window.console) console.log(this.src); }
				});
			});
