
$(document).ready(function() { 
//jQuery('#show_tips').accordion({event: 'mouseover', active: '.on', autoHeight: false}); 
//	jQuery('#show_tips').accordion({header: 'h3',autoHeight: false,
//		navigation: true});
});

function fillAccordian(id)
{
	$('#show_tips').stop().fadeOut(200);
	$("#tip_category").stop().fadeOut(200,function(){
		$('#show_tips').accordion( "destroy" );
		$("#show_tips").html('');
		$("#tip_category").html('');
		$.post(SITE_ROOT + "ajax/household_tip_process.php",
			{ 
				operation: 'getCategoryName', 
				cat_id: id
			},
			function(data){
				$("#tip_category").html("<h2>"+data+"</h2>");
				$("#tip_category").fadeIn(200);
			}, 
			"html"
		);
		$.post(SITE_ROOT + "ajax/household_tip_process.php",
			{ 
				operation: 'getCategories', 
				cat_id: id
			},
			function(data){
				$("#show_tips").html(data);
				$("#show_tips").fadeIn(200);
				$('#show_tips').accordion({autoHeight: false});
			}, 
			"html"
		);
	});
}
