function loadContent(file, scriptid ){
	var head = document.getElementsByTagName('head').item(0)
	var scriptTag = document.getElementById(scriptid);
	if(scriptTag) head.removeChild(scriptTag);
	script = document.createElement('script');
	script.src = file;
	script.type = 'text/javascript';
	script.id = scriptid ;
	head.appendChild(script);
}
var now = new Date();
var HMS = '?'+now.getHours()+now.getMinutes()+now.getSeconds();
loadContent('featured_j.php'+HMS, 'featured_script' );
loadContent('featured_gallery.php'+HMS, 'featured_gallery' );
