// JavaScript Document
//document.onload = rolloverInit;
$(document).ready(function() {
						  //MY CODE HERE!
						  $("#about_click").click(function(){
														 $("#about").toggle('slow');
														 return false;
														 });
						 $("#resume").click(function(){
														 $("#resume_c").toggle('slow');
														 return false;
														 });
						 $("#resume").click(function(){
														 $(".pic1").toggle('slow');
														 return false;
														 });
						 	 $("#publish").click(function(){
														 $(".pic2").toggle('slow');
														 return false;
														 });
							 $("#publish").click(function(){
														 $("#pub_c").toggle('slow');
														 return false;
														 });
							 $("#bio").click(function(){
														 $(".pic3").toggle('slow');
														 return false;
														 });
							 $("#bio").click(function(){
														 $("#bio_c").toggle('slow');
														 return false;
														 });
							 	 $("#awards").click(function(){
														 $(".pic4").toggle('slow');
														 return false;
														 });
							 $("#awards").click(function(){
														 $("#awards_c").toggle('slow');
														 return false;
														 });
							 	 $("#anc").click(function(){
														 $(".pic5").toggle('slow');
														 return false;
														 });
							 $("#anc").click(function(){
														 $("#anc_c").toggle('slow');
														 return false;
														 });
						 
						 });

/*function rolloverInit()
{
	alert ("hi");
	for(var i=0; i<document.images.length; i++)
		{
		alert ("hi");
		if(document.images[i].parentNode.tagName == "A")
			{
			setupRollover(document.images[i]);
			return false;
			}
		}
}

function setupRollover(thisImage){
	thisImage.outImage = new Image();
	thisImage.outImage.src = "images/" +thisImage.id + "_up.gif";
	thisImage.onclick = rollOut;
	
	thisImage.clickImage = new Image();
	thisImage.clickImage.src =  "images/" +thisImage.id + "_down.gif";
	thisImage.onclick = clickChange;
}

function rollOut(){
	this.src = this.outImage.src;
	
}

function clickChange()
{
	this.src = this.clickImage.src;
}
						  */