// JavaScript Document
window.addEvent('domready', function(){
	var swfCab = new Swiff('swf/header1.swf',{
		id: 'cabSWF',
		width: 996,
    	height: 105,
		container: 'cabSWF'
	});
	var swfPest = new Swiff('swf/header_navegacion.swf',{
		id: 'swfPest',
		width: 800,
    	height: 32,
		container: 'swfPest'
	});
	if($('swfCent')){
		var swfCent = new Swiff('swf/central.swf',{
			id: 'swfCent',
			width: 593,
    		height: 243,
			container: 'swfCent'
		});
	}
	var swfVel = new Swiff('swf/banner_medidor.swf',{
		id: 'swfVel',
		width: 220,
    	height: 72,
		container: 'swfVel'
	});
	var swfPie = new Swiff('swf/footer.swf',{
		id: 'swfPie',
		width: 994,
    	height: 30,
		container: 'swfPie'
	});
	if($('noticia')){
		cargaAjax('./modulos/noticias/noticias.ajax.php','get','','noticia',true, null);
	}
	if($('entrar')){
		$('entrar').addEvents({
			'mouseenter': function(){
				$('entrar').set('src', 'layout/mail-over.gif');
			},
			'mouseleave': function(){
				$('entrar').set('src', 'layout/mail-up.gif');
			}
		});
	}
});