// DOCUMENT.READY
(function($){
	$(document).ready(function(){
		// MOVE ARROW WHEN HOVERING OVER "LEARN MORE..." TEXT ON INDEX PAGE
		$('#learn-more-text').hover(
			function(){
				$('#learn-more-arrow').animate ({
					left: '+=10'
					}, 200, function (){
						// callback when animate() completes
					}
				);
			},
			function(){
				$('#learn-more-arrow').animate ({
					left: '-=10'
					}, 400, function (){
						// callback when animate() completes
					}
				);				
			}
		);
		
		
		////////////////
		// NAMETAG - JAY
		////////////////
		$('#index-theatre-right').hover(
			function(){
				$('#nametag-jay').animate ({
					opacity: '1',
					top: '+=10'
					}, 200, function (){
						// callback when animate() completes
					}
				);
			},
			function(){
				$('#nametag-jay').animate ({
					opacity: '0',
					top: '-=10'
					}, 200, function (){
						// callback when animate() completes
					}
				);
			}
		);
		
		/////////////////
		// NAMETAG - BILL
		/////////////////
		$('#index-theatre-right').hover(
			function(){
				$('#nametag-bill').delay(100).animate ({
					opacity: '1',
					top: '+=10'
					}, 200, function (){
						// callback when animate() completes
					}
				);
			},
			function(){
				$('#nametag-bill').delay(100).animate ({
					opacity: '0',
					top: '-=10'
					}, 200, function (){
						// callback when animate() completes
					}
				);
			}
		);
	});
	
}(jQuery));
;

