	var sliderHeight = "100px";

	// SOHO 'MORE' SLIDERS
	$(document).ready(function(){
		$('.slider_soho').each(function () {
					var current = $(this);
					current.attr("box_h", current.height());
				}
		 );
		
		$(".slider_soho").css("height", sliderHeight);
		
		$(".slider_soho_menu").html('<a class="more_button">More...</a>');
		$(".slider_soho_menu a").click(function() { openSlider() })
	});

	function openSlider()
	{
		var open_height = $(".slider_soho").attr("box_h") + "px";
		$(".slider_soho").animate({"height": open_height}, {duration: "fast" });
		$("#about").fadeOut('fast');
		
		$(".slider_soho_menu").html('<a class="more_button">Less...</a>');
		$(".slider_soho_menu a").click(function() { closeSlider() })
	}
	
	function closeSlider()
	{
		$(".slider_soho").animate({"height": sliderHeight}, {duration: "fast" });
		$("#about").fadeIn('fast');
		
		$(".slider_soho_menu").html('<a class="more_button">More...</a>');
		$(".slider_soho_menu a").click(function() { openSlider() })
	}
