// JavaScript Document


<!--Place this script anywhere in a page.-->
<!--NOTE: You do not need to modify this script.-->

<!--
// current date - from http://rainbow.arch.scriptmania.com/scripts
// Array of day names
var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");

var monthNames = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul",
                           "Aug","Sept","Oct","Nov","Dec");

var dt = new Date();
var y  = dt.getYear();

// Y2K compliant
if (y < 1000) y +=1900;

// -->


function addbookmark()
{
bookmarkurl="http://www.keanespecial.com"
bookmarktitle="keanespecial.com - For all the Latest News on Roy Keane"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)

else if (document.getElementById) {
   alert("Please Press (CTRL-D) or (CMD-D) to bookmark this site");
}
}

// Changes layer z-index according to name
function moveLayerDown(layerName) {  
	if (document.getElementById) {
			document.getElementById(layerName).style.zIndex = "0";
			if (typeof document.body.style.maxHeight != "undefined") {
			  // IE 7, mozilla, safari, opera 9
			} else {
			  document.getElementById(layerName).style.top = "125";
			}
  		} 
		
	}
	
function moveLayerUp(layerName) {  
	if (document.getElementById) {
		document.getElementById(layerName).style.zIndex = "20";
		if (typeof document.body.style.maxHeight != "undefined") {
		  // IE 7, mozilla, safari, opera 9
		} else {
		  document.getElementById(layerName).style.top = "125";
		 //alert("IE6 LAYER UP");
		}		
  		} 
	}