var sliderHeight = "124px";	
						

    $(iden+' .bd').each(function () {
    	var current = $(this);
    	current.attr("box_h", current.height());
		
		if(current.attr("box_h") < 124){
			$(iden+" .bd").css("height", sliderHeight);
		} else {
			$(iden+" .bd").css("height", sliderHeight);
			$(iden+" .ft").html('<a href="#" class="expand">Expand +</a>');
			$(iden+" .ft a").click(function() { openSlider() })
		}
    }); 


function openSlider(){
    var open_height = $(iden+" .bd").attr("box_h") + "px";
    $(iden+" .bd").animate({"height": open_height}, {duration: "slow" });
    $(iden+" .ft").html('<a href="#" class="expand">Collapse -</a>');
    $(iden+" .ft a").click(function() { closeSlider() })
}

function closeSlider(){
    $(iden+" .bd").animate({"height": sliderHeight}, {duration: "slow" });
    $(iden+" .ft").html('<a href="#" class="expand">Expand +</a>');
    $(iden+" .ft a").click(function() { openSlider() })
}

