jQuery(document).ready(function(){
	
	jQuery("#text-visibility").toggle(
		function () {
			jQuery(this).addClass("b-text");
			jQuery("#text-content").animate({opacity:"0"}, "normal");
			jQuery("#text").animate({width:"28px"}, "slow");
			},
		function () {
			jQuery("#text").animate({width:"220px"}, "slow");
			jQuery(this).removeClass("b-text");
			jQuery("#text-content").animate({opacity:"1"}, "normal");
			}
		);
		
	jQuery("#gallery-visibility").toggle(
		function () {
			jQuery(this).addClass("b-gallery");
			jQuery("#gallery-content").animate({opacity:"0"}, "normal");
			jQuery("#gallery").animate({width:"28px"}, "fast");
			jQuery("#gallery-starter").animate({bottom:"73px"}, "fast");
			jQuery("#button-divider").animate({bottom:"63px"}, "fast");
			},
		function () {
			jQuery("#gallery").animate({width:"58px"}, "fast");
			jQuery(this).removeClass("b-gallery");
			jQuery("#gallery-content").animate({opacity:"1"}, "normal");
			jQuery("#gallery-starter").animate({bottom:"63px"}, "fast");
			jQuery("#button-divider").animate({bottom:"53px"}, "fast");
			}
		);
		
	// jQuery("#text-visibility").click();
	jQuery("#gallery-visibility").click();
		
});
