function change_logo_img(type, obj) {
	
	object = document.getElementById(obj);
	
	if (type == 'over') {
		object.src = 'images/' + obj + '_hov.gif';
	}
	
	if (type == 'out') {
		object.src = 'images/' + obj + '.gif';
	}
}
