var jQueryUI = {}

$(document).ready(function() {
			     $('.show-detail-header').click(function(){
				$(this).next().slideToggle();
				
			     }).next().hide();
});

