function jpg_over(img) {
	img.src=img.src.replace('.jpg','r.jpg');
} 
function jpg_out(img) {
	img.src=img.src.replace('r.jpg','.jpg');
}

function gif_over(img) {
	img.src=img.src.replace('.gif','r.gif');
} 
function gif_out(img) {
	img.src=img.src.replace('r.gif','.gif');
}

function menu_over(id_td,id_p,id_b) {
	id_td.style.backgroundColor="246511";
	id_p.src=id_p.src.replace('.gif','r.gif');
	id_b.style.color="B6FF9D";
} 
function menu_out(id_td,id_p,id_b) {
	id_td.style.backgroundColor="AFC654";
	id_p.src=id_p.src.replace('r.gif','.gif');
	id_b.style.color="062503";
}