function SwapImg(el)
{
	el.src = 'images/' + el.name + 'b.jpg'
}
function RestImg(el)
{
	el.src = 'images/' + el.name + 'a.jpg'
}
function swapLogo(el, source)
{
document.all(el).src = source
}