<!--
/*
###############################################
#				 Theme Info	 				  #
###############################################
#											  #
#	Designed By Phoenix						  #
#	Y! ID : Shadowofthephoenix13			  #
#	Mail : Shadowofthephoenix13@YaHoo.CoM	  #
#											  #
###############################################
*/
function shrinkHeader(mode){
	document.cookie = "upshrink=" + (mode ? 1 : 0);
	document.getElementById("upshrink").src = images_url + (mode ? "/upshrink2.gif" : "/upshrink.gif");
	document.getElementById("upshrinkHeader").style.display = mode ? "none" : "";
	document.getElementById("upshrinkHeader2").style.display = mode ? "none" : "";
	current_header = mode;
}
function FooterHighlight(element, value){
	element.src =  images_url + "/" + (value ? "h_" : "") + element.id + ".gif";
}
function high(which2){
	theobject=which2
	highlighting=setInterval("highlightit(theobject)",50)
}
function low(which2){
	clearInterval(highlighting)
	if (which2.style.MozOpacity)
		which2.style.MozOpacity=0.3
	else if (which2.filters)
		which2.filters.alpha.opacity=50
}
function highlightit(cur2){
	if (cur2.style.MozOpacity<1)
		cur2.style.MozOpacity=parseFloat(cur2.style.MozOpacity)+0.1
	else if (cur2.filters&&cur2.filters.alpha.opacity<100)
		cur2.filters.alpha.opacity+=10
	else if (window.highlighting)
		clearInterval(highlighting)
}
-->