/*****
*
*   lizlindsey.js
*
*   copyright 2004, Kevin Lindsey
*   licensing info available at: http://www.kevlindev.com/license.txt
*
*****/

/*****
*
*   mouseover
*
*****/
function mouseover(image) {
    image.src = image.src.replace("_cap", "_ital");
}


/*****
*
*   mouseout
*
*****/
function mouseout(image) {
    image.src = image.src.replace("_ital", "_cap");
}
