	$(function(){
		
		/* Thumbnail Rotation */
			//$('#thumb_1').rotateLeft(15);
			//$('#thumb_2').rotateRight(15);
	
		/* Thumbnail Drop from top */
			$("#item_1").hide();
			$("#item_2").hide();
	
			$('#item_1').animate({top: '+=425',"opacity": "show"}, 1000,
				function() {
    				// Animation complete.
  				}
  			);
  		
  			$('#item_2').animate({top: '+=425',"opacity": "show"}, 1500,
				function() {
    				// Animation complete.
  				}
  			);


	
		/* Sets up Gallery Rotator */
			$("#gallery_rotator").css("display","none");
			$("#gallery_rotator").fadeIn('slow');
	
			$('#gallery_rotator').before('<div id="image_nav">').cycle({
				fx:     'fade',
				speed:  'slow',
				timeout: 3000,
				before: function() { if (window.console) console.log(this.src); }
			});
			
		/* Gallery Click */
			$("#gallery_rotator").click(function(){
				window.location = "/scall05141/pages/portfolio.shtm";
			});
	
	});
