// JavaScript Document


//redirect function
function redirect(){
window.location.href="index.php";	
}

//gallery functions
function hideDiv(id){
document.getElementById(id).style.display="none";
}
function showDiv(id){
document.getElementById(id).style.display="";
}
function fullImage(target, image, width, height){
document.getElementById(target).innerHTML='<img src=\"'+image+'\" width=\"'+width+'\" height=\"'+height+'\" border=\"0\" alt=\"image\" />';
}
//nav functions
function navOver(image){
document.getElementById(image).src='images/'+image+'On.gif';
}
function navOut(image){
document.getElementById(image).src='images/'+image+'Off.gif';
}
function navOverPNG(image){
document.getElementById(image).src='images/'+image+'On.png';
}
function navOutPNG(image){
document.getElementById(image).src='images/'+image+'Off.png';
}
function classChange(id, newClass){
document.getElementById(id).className=newClass;	
}
