
jQuery(document).ready(function() {


	/* Initialize the correct div in the About page */
	var PAGES       = 4;
	var currentPage = 1;
	for(var i = 2; i <= PAGES; i++) {
		
		jQuery('#about-page-'+i).css({display:'none'});
	}
	/* Initialize more button*/
	jQuery('#moreButton a').mouseup(function() {
					jQuery(this).parent().stop().css({backgroundPosition:"bottom center"});
					
					//fade out previous text and then fade in new paragraph
					jQuery('#about-page-'+ currentPage).fadeOut('slow', function() {
							//Set the new currentPage and fade it in
							currentPage = ((currentPage +1) > PAGES)? 1 : currentPage + 1;
							jQuery('#about-page-'+currentPage).fadeIn('slow');
						});
				})
					  
	//Initialize the Gallery Section
    jQuery('#sidebar #photo-gallery a').lightBox();
	
	//Initialize Portfolio Section
	jQuery("#content-area a#single_image").fancybox();
	
	
});