/*

	JQuery rollover effect for images within the services template navigation

*/

var revert = new Array();
var inames = new Array('facebook','flickr','lastfm','linked','twitter'); // Specifies the 'name = ' of each <img> within the navigation

// Preload
if (document.images) {
  var flipped = new Array();
  for(i=0; i< inames.length; i++) {
    flipped[i] = new Image();
    flipped[i].src = "/wp-content/images/"+inames[i]+"_on.jpg"; // Specifies dynamically the file names of the images that will be displayed on rollover // CHANGE TO ABSOLUTE DIRECTORY FOR ANTHONY'S WEBSITE!
  }
}

function over(num) {
  if(document.images) {
    revert[num] = document.images[inames[num]].src;
    document.images[inames[num]].src = flipped[num].src;
  }
}
function out(num) {
  if(document.images) document.images[inames[num]].src = revert[num];
}
