/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function imageIn(img){
    $(img).removeClassName('gallery_normal');
    $(img).addClassName('gallery_hover');
}

function imageOut(img){
    $(img).removeClassName('gallery_hover');
    $(img).addClassName('gallery_normal');
}




