jQuery(document).ready(function(){
	$('.defaultHide').click(function() {
		$(this).next().toggle(100);
		return false;
	}).next().hide();
});
