jQuery(document).ready(function(){
		enable_show_hide_triggers();
	});

function enable_show_hide_triggers(){
		jQuery('.show-hide .btn-show').click(function() {
			jQuerybutton = jQuery(this);
			jQueryparent = jQuerybutton.parents('.show-hide').eq(0);
			jQuerycontent = jQuery('.content', jQueryparent);
			jQuerycontent.slideDown("normal",function(){
				jQuery('.btn-hide', jQueryparent).show();
				jQuerybutton.hide();
			});
		});
		jQuery('.show-hide .btn-hide').click(function() {
			jQuerybutton = jQuery(this);
			jQueryparent = jQuerybutton.parents('.show-hide').eq(0);
			jQuerycontent = jQuery('.content', jQueryparent);
			jQuerycontent.slideUp("normal",function(){
				jQuery('.btn-show', jQueryparent).show();
				jQuerybutton.hide();
			});
		});		
	}
