/*  
Made by Martial Boissonneault © 2002-2003 http://getElementById.com/
May be used and changed freely as long as this msg is intact
Visit http://getElementById.com/ for more free scripts and tutorials.
*/
var ns4 = (document.layers);
var ie4 = (document.all && !document.getElementById);
var ie5 = (document.all && document.getElementById);
var ns6 = (!document.all && document.getElementById);

function show(id){
	// Netscape 4
	if(ns4){
		document.layers[id].visibility = "show";
	}
	// Explorer 4
	else if(ie4){
		document.all[id].style.visibility = "visible";
	}
	// W3C - Explorer 5+ and Netscape 6+
	else if(ie5 || ns6){
		document.getElementById(id).style.visibility = "visible";
	}
}

function hide(id){
	// Netscape 4
	if(ns4){
		document.layers[id].visibility = "hide";
	}
	// Explorer 4
	else if(ie4){
		document.all[id].style.visibility = "hidden";
	}
	// W3C - Explorer 5+ and Netscape 6+
	else if(ie5 || ns6){
		document.getElementById(id).style.visibility = "hidden";
	}
}

//Gallery scripts



function showDiv(strDivID){
//hide current
//alert(CURRENT_IMAGE);
hideDiv(CURRENT_IMAGE);
//display clicked
//alert(strDivID)
document.getElementById(strDivID).style.display = 'block'

//set global
CURRENT_IMAGE = strDivID
}

function hideDiv(strDivID){
//alert(strDivID);
document.getElementById(strDivID).style.display = 'none'


}

function doNothing(){
return;
}

/*  
Footer copyright script
*/

//--Footer copyright script

function footer(){
strFooter = '<p>&copy; Copyright 2009 '
return(strFooter);
}