/*Funciones de Menus*/

$(document).ready(inicializarJquery);



function inicializarJquery()
{
		

		inicializarEfectosAjax();
}



function inicializarEfectosAjax()
{
		
		//$(".encNoticia1").sifr({path:"/flash/fonts/",font:"bentonsanscondbold",version:3,preventWrap:true});
		//$(".encNoticia420").sifr({path:"/flash/fonts/",font:"bentonsanscondbold",version:3,width:420});
		//$(".encNoticia360").sifr({path:"/flash/fonts/",font:"bentonsanscondbold",version:3,width:360});
		//$(".encNoticia198").sifr({path:"/flash/fonts/",font:"bentonsanscondbold",version:3,width:198});
		$("a.singleImage").fancybox(); 
		$("a.fcVideo").fancybox({frameWidth:600,frameHeight:400,callbackOnClose:fcVideoOnClose}); 
		$("a.fcFlash").fancybox({frameWidth:640,frameHeight:480,callbackOnClose:fcVideoOnClose});
		$("a.fcGaleria").fancybox({frameWidth:700,frameHeight:700}); 
		$("a.fcImagen").fancybox();
		$("a.fcEnlace").attr("target","_blank");

		
}

function fcVideoOnClose()
{
	$("#fancy_frame").attr('src','blank.htm');
}


