
//Just some pics
pic0= new Image();
pic0.src="../images/home2.gif";
pic1= new Image();
pic1.src="../images/services2.gif";
pic3= new Image();
pic3.src="../images/photos2.gif";
pic4= new Image();
pic4.src="../images/about2.gif";

//My cool img rollover src switcher
function over(what)
{
   what.src = "images/" + what.name + "2.gif";
}
function out(what)
{
   what.src = "images/" + what.name + "1.gif";
}
