// JavaScript Document



	//color: #FFFFFF;

	//font-weight: bold;

	//background-color: #197df9;

function showHoverGalleries(which_gallery){

	if (which_gallery == 'student_gallery'){

		document.getElementById('student_gallery_title').style.backgroundColor='#00387d';

		document.getElementById('student_gallery_title').style.cursor='pointer';

	}

	/*if (which_gallery == 'james_howe'){

		document.getElementById('james_howe_title').style.backgroundColor='#00387d';

		document.getElementById('james_howe_title').style.cursor='pointer';

	}*/

	if (which_gallery == 'art_dialogue'){

		document.getElementById('art_dialogue_title').style.backgroundColor='#00387d';

		document.getElementById('art_dialogue_title').style.cursor='pointer';

	}

	if (which_gallery == 'faculty_gallery'){

		document.getElementById('faculty_gallery_title').style.backgroundColor='#00387d';

		document.getElementById('faculty_gallery_title').style.cursor='pointer';

	}

	/*if (which_gallery == 'nancy_dryfoos'){

		document.getElementById('nancy_dryfoos_title').style.backgroundColor='#00387d';

		document.getElementById('nancy_dryfoos_title').style.cursor='pointer';

	}*/

}



function restoreGalleries(){

		document.getElementById('student_gallery_title').style.backgroundColor='#197df9';

		document.getElementById('student_gallery_title').style.cursor='pointer';

		/*document.getElementById('james_howe_title').style.backgroundColor='#197df9';

		document.getElementById('james_howe_title').style.cursor='pointer';*/

		document.getElementById('art_dialogue_title').style.backgroundColor='#197df9';

		document.getElementById('art_dialogue_title').style.cursor='pointer';

		document.getElementById('faculty_gallery_title').style.backgroundColor='#197df9';

		document.getElementById('faculty_gallery_title').style.cursor='pointer';

		/*document.getElementById('nancy_dryfoos_title').style.backgroundColor='#197df9';

		document.getElementById('nancy_dryfoos_title').style.cursor='pointer';*/

}



function linkTo(which_link){

	if (which_link == 'student_gallery'){

		 window.location = 'student_gallery';

	}

	if (which_link == 'james_howe'){

		 window.location = 'http://www.kean.edu/~gallery/galleries/jameshowe.html';

	}

	if (which_link == 'art_dialogue'){

		 window.location = 'http://www.kean.edu/~gallery/';

	}

	if (which_link == 'faculty_gallery'){

		 window.location = 'faculty_gallery';

	}

	if (which_link == 'nancy_dryfoos'){

		 window.location = 'http://www.kean.edu/~gallery/galleries/nancydreyfoos.html';

	}

	

}