	$(document).ready(function(){
	
	 $(".info").click(function () {
		  $("#info").animate({"height": "100%"}, 500);
		});
	 $(".contact").click(function () {
		  $("#contact").animate({"height": "100%"}, 500);
		});		
	 $(".close").click(function () {
		  $("#info").animate({"height": "0px"}, 500);
		});
	 $(".close2").click(function () {
		  $("#contact").animate({"height": "0px"}, 500);
		});	
		
		$("#slideshow").fadeIn(2000);

	});

	$(function() {
	    $('#slideshow').before('<div id="nav" class="nav">').cycle({
	        fx:     'fade',
	        speed:  '1000',
	        timeout: '4000',
	        pager:  '#nav',
			/*next:   '#next', 
			prev:   '#prev',*/
	        before: function() { if (window.console) console.log(this.src); }
	    });

	    $('.page_imgs').after('<div id="nav2" class="nav2">').cycle({
	        fx:     'fade',
	        speed:  '1000',
	        timeout: '4000',
	        pager:  '#nav2',
			/*next:   '#next', 
			prev:   '#prev',*/
	        before: function() { if (window.console) console.log(this.src); }
	    });

	    $('.quotes').cycle({
	        fx:     'scrollDown',
	        speed:  '1000',
	        timeout: '10000',
	        random:	 true,
	        //pager:  '#nav2',
			/*next:   '#next', 
			prev:   '#prev',*/
	        before: function() { if (window.console) console.log(this.src); }
	    });
	    //quotes
	});
