$(document).ready(function(){

	var button_height = $(".cols-bottom").height();
	if ($.browser.safari) {
		button_height = button_height + 15;
	}
	$(".bottom-button").css("height", button_height);
	
	$(".content-area").css("display", "none");
	$(".content-area:first").css("display", "block");
		
	lastBlock = $("#current");
    maxWidth = 682;
    minWidth = 60;	

    $(".long-button").click(
      function(){
      	$(".long-button").removeClass("selected");
      	$(this).addClass("selected");
      	var height = $(this).parent().children(".content-area").height() - 49;
      	$(".content-area").css("display", "none");
      	
      	$(this).children().children(".bottom-button").css("height", height);
        
        $(".horizontal-accordion UL LI").animate({width: minWidth+"px"}, 400, "swing", function(){
        });
        
		$(this).parent("LI").animate({width: maxWidth+"px"}, 400, "swing", function(){
				$(this).children(".content-area").css("display", "block");
		});
		
		
		lastBlock = this;
		return false;
      }
    );
    
	
});