function moveBG(idObjetoBG,position,texto)
{
	document.getElementById(idObjetoBG).style.backgroundImage = 'url(img/Bkg_edades.jpg)';
	document.getElementById(idObjetoBG).style.backgroundPosition = '0px ' + position;
	document.getElementById('actText').innerHTML = texto;
}

function swVideo()
{
	video = 'vid/portada.divx';
	imagen = 'vid/portada.jpg';
	custom = 'ConellosSaudables';
	autoplay = 'false';
	width = 520;
	height = 320;
	
	document.write('<object codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab" width="' + width + '" height="' + height + '" classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616">');
	document.write('	<param name="previewImage" value="' + imagen + '">');
	document.write('	<param name="autoplay" value="' + autoplay + '">');
	document.write('	<param name="src" value="' + video + '">');
	document.write('	<param name="custommode" value="' + custom + '">');
	document.write('	<param name="showpostplaybackad" value="false">');
	document.write('	<embed type="video/divx" src="' + video + '" pluginspage="http://go.divx.com/plugin/download/" showpostplaybackad="false" custommode="Stage6" previewImage="' + imagen + '" autoplay="' + autoplay + '" width="' + width + '" height="' + height + '">');
	document.write('</object>');				
}