function show(id){
	var foto = document.getElementById('fotoBox');
	var video = document.getElementById('videoBox');
	
	if(id == 'fotoBox'){
		foto.style.display = 'block';
		video.style.display = 'none';
//		$("#fotoSx").attr('src','templates/Default/grafica/img/sinistroSel.gif');
//		$("#fotoDx").attr('src','templates/Default/grafica/img/destroSel.gif');
		$("#fotoBg").attr('style','cursor:pointer;background: transparent url(templates/Default/grafica/img/bgSel.gif) repeat-x scroll 0 0;font-size:11px;');
//		$("#videoSx").attr('src','templates/Default/grafica/img/sinistroBg.gif');
//		$("#videoDx").attr('src','templates/Default/grafica/img/destroBg.gif');
		$("#videoBg").attr('style','cursor:pointer;background: transparent url(templates/Default/grafica/img/bg.gif) repeat-x scroll 0 0;font-size:11px;');
	}
	else{
		foto.style.display = 'none';
		video.style.display = 'block';
//		$("#videoSx").attr('src','templates/Default/grafica/img/sinistroSel.gif');
//		$("#videoDx").attr('src','templates/Default/grafica/img/destroSel.gif');
		$("#videoBg").attr('style','cursor:pointer;background: transparent url(templates/Default/grafica/img/bgSel.gif) repeat-x scroll 0 0;font-size:11px;');
//		$("#fotoSx").attr('src','templates/Default/grafica/img/sinistroBg.gif');
//		$("#fotoDx").attr('src','templates/Default/grafica/img/destroBg.gif');
		$("#fotoBg").attr('style','cursor:pointer;background: transparent url(templates/Default/grafica/img/bg.gif) repeat-x scroll 0 0;font-size:11px;');
	}
}


function checkSelIn(td){
	var id = td.getAttribute('id');
	var nameImage = (id == 'videoBg') ? 'video' : 'foto'; 
	if(td.style.backgroundImage == 'url(templates/Default/grafica/img/bg.gif)' ){
		td.style.backgroundImage = 'url(templates/Default/grafica/img/bgSel.gif)';
	//	document.getElementById(nameImage + 'Sx').setAttribute('src','templates/Default/grafica/img/hover_sx.gif');
	//	document.getElementById(nameImage + 'Dx').setAttribute('src','templates/Default/grafica/img/hover_dx.gif');
	}
	
}
function checkSelOut(td){
	var id = td.getAttribute('id');
	var nameImage = (id == 'videoBg') ? 'video' : 'foto'; 
	var divBox = document.getElementById(nameImage + 'Box');
	if(td.style.backgroundImage == 'url(templates/Default/grafica/img/bgSel.gif)' && divBox.style.display == 'none'){
		td.style.backgroundImage = 'url(templates/Default/grafica/img/bg.gif)';
	//	document.getElementById(nameImage + 'Sx').setAttribute('src','templates/Default/grafica/img/sinistroBg.gif');
	//	document.getElementById(nameImage + 'Dx').setAttribute('src','templates/Default/grafica/img/destroBg.gif');
	}
}
