$(function(){
	var slideHeight = 0; // px
	var defHeight = $('#breakdown_wrap').height();
	if(defHeight >= slideHeight){
		$('#breakdown_wrap').css('height' , slideHeight + 'px');
		$('#breakdown_showhide').append('<a href="#">SHOW BREAKDOWN</a>');
		$('#breakdown_showhide a').click(function(){
			var curHeight = $('#breakdown_wrap').height();
			if(curHeight == slideHeight){
				$('#breakdown_wrap').animate({
				  height: defHeight
				}, 800);
				$('#breakdown_showhide a').html('HIDE BREAKDOWN');
			}else{
				$('#breakdown_wrap').animate({
				  height: slideHeight
				}, 600);
				$('#breakdown_showhide a').html('SHOW BREAKDOWN');
			}
			return false;
		});
	}
});
