/*                       ''~``
                        ( o o )
+------------------.oooO--(_)--Oooo.--------------------+
|         Copyright © 2007 CupidsCatering.com           |
|                  All Rights Reserved.                 |
|     ---------------------------------------------     |
|                    .oooO                              |
|                    (   )   Oooo.                      |
+---------------------\ (----(   )----------------------+
                       \_)    ) /
                             (_/
This will fade out the "Loading..." box and hide it so we can access the content under it */

ie5 = (document.all && document.getElementById);
ns6 = (!document.all && document.getElementById);
opac = 80;

/* Needed variables for fadeOut function */
var DivID;
var Disable;
var DivSave;
var DisableSave;

/* Will take a Div ID and fade it out */
function fadeOut(DivID, Disable) {
	DivSave = DivID;
	DisableSave = Disable;
	if(opac!= 0){
		if(opac >= 10){
			opac = opac - 10;
		}
		else{
			--opac;
		}
		if(ie5) document.getElementById(DivID).filters.alpha.opacity = opac;
		if(ns6) document.getElementById(DivID).style.MozOpacity = opac/100;
		setTimeout('fadeOut(DivSave, DisableSave)', 50);
	}
	else if(opac == 0){
		if(Disable == "Yes"){
			document.getElementById(DivID).style.visibility = "hidden"; 
		}
	}
}
