function link_Ovr(src,color) {
	if (!src.contains(event.fromElement)) {
		src.style.cursor = 'hand'; 
	} 
} 

function link_Out(src) {
	if (!src.contains(event.toElement)) {
	    src.style.cursor = 'default';
	} 
}

function menumain_Ovr(src,color) {
	if (!src.contains(event.fromElement)) {
		color_ori = color;
		src.style.cursor = 'hand'; 
		src.style.color = '#000000';
		src.style.backgroundColor = '#FFCC00';
	} 
} 

function menumain_Out(src) {
	if (!src.contains(event.toElement)) {
	    src.style.cursor = 'default';
		src.style.color = '#FFFFFF';
		src.style.backgroundColor = color_ori;
	} 
}

function home_Ovr(src,color) {
	if (!src.contains(event.fromElement)) {
		color_ori = color;
		src.style.cursor = 'hand'; 
		src.style.fontWeight = 'bold';
	} 
} 

function home_Out(src) {
	if (!src.contains(event.toElement)) {
	    src.style.cursor = 'default';
	    src.style.fontWeight = 'normal';
	} 
}

function copyright(e) {
if (event.button == 2){
alert('2003 © Arqintegral, imágenes y contenidos')
}
}
document.onmousedown=copyright