/*
 * jQuery JavaScript Library HAP custom
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 */
function fadeInLoad(id, url) {
	$(document).ready(function () {
		$(id).load(url, function() {
			$(id).fadeIn("slow");
   		})
	});
}

function fadeInLoadCacheOff(id, url) {
	$.ajaxSetup({
		cache: false
	});
	fadeInLoad(id, url);
}

function fadeInLoadCacheOn(id, url) {
	$.ajaxSetup({
		cache: true
	});
	fadeInLoad(id, url);
}

