﻿
/* ON LOAD FUNCTIONS 
   -------------------------------------------
   List all functions from this JS file to be
   initiated on load of the page.
*/
/* ------------------------------------------- */
addLoadEvent(productFunctions);

/* ------------------------------------------- */
function productOut(divID){
    //$('prodText_'+divID).fade({ duration: 0.25,from: 0.9, to : 0.0});
    $('prodImage_'+divID).appear({ duration: 0.25, from: 0.5, to : 1.0 });
}
function productOver(divID){

    //$('prodText_'+divID).appear({ duration: 0.25, from: 0.0, to: 0.5 });
    $('prodImage_'+divID).fade({ duration: 0.25, from: 1.0, to : 0.5});
}

function productFunctions(){
    var prodLinks = document.getElementsByTagName("a");  
  
}
