﻿<!--
var txt;
function Over(obj){
txt = obj.src;
var newPath_small = txt.substring(0,txt.indexOf('.jpg'));
var newPath_Large = newPath_small;
newPath_small += 's.jpg';
newPath_Large += 'b.jpg';
obj.src = newPath_small;
//document.getElementById('Img2').src = newPath_Large;
//setTimeout('document.getElementById(\'Img2\').src = newPath_Large;',500);
var command ='document.getElementById(\'Img2\').src=\'' + newPath_Large + '\';' ;
setTimeout(command,400);
}
function Out(obj){
obj.src=txt;
setTimeout('document.getElementById(\'Img2\').src=\'images/p1.jpg\';',200);
//document.getElementById('Img2').src='images/p1.jpg';

}

function Click(path){
document.getElementById('content').src = path;
}
//-->
