var glbInc, glbDec	;

function decreaseSizeImage(image) // will get back to its normal default size
{
var id = image;
if(glbInc != null) {clearTimeout(glbInc); glbInc = null;};
if (document.getElementById(id).height > 32)
{
document.getElementById(id).height = 32;
document.getElementById(id).width = 150;
glbDec = setTimeout("decreaseSizeImage('"+id+"')", 1);
};
}

function increaseSizeImage(image)
{
var id = image;
if(glbDec != null) {clearTimeout(glbDec); glbDec = null;};
if (document.getElementById(id).height < 40)
{
document.getElementById(id).height += 1;
document.getElementById(id).width += 3;
glbInc = setTimeout("increaseSizeImage('"+id+"')", 32);
};
}

