////////// FOTOS FANCY
$(document).ready(function(){
	$("a.fotofancy[rel]").fancybox({
		'zoomSpeedIn'		: 500,
		'zoomSpeedOut'		: 200,
		'overlayShow'		: true,
		'easingIn'			: 'easeOutBack',
		'easingOut'			: 'easeInBack',
		'overlayOpacity'	: 0.40,
		'centerOnScroll'	: true
	});
	
	controla_idiomas();
})

$(window).load(function () {
	ayco_control();
});

function ayco_control () {
	ayco_control_rollover();
}

/*$(function () {
	menu_control();
})*/

function menu_control (open_id) {
	$("#menu").aycomenu({
		VopenedId: "#" + open_id
	});
}

function ayco_control_rollover (contenedor) {
	$(".rollover[src*=_off.]").unbind('hover').hover(
		function () {
			off_src	= $(this).attr("src");
			on_src	= off_src.replace("_off","_on");
			$(this).attr("src",on_src);
		},
		function () {
			on_src	= $(this).attr("src");
			off_src	= off_src.replace("_on","_off");
			$(this).attr("src",off_src);
		}
	);
}

function controla_idiomas() {
	$("a[id^=btn_lang_]").click(function () {
		idioma = $(this).attr("id").split("_")[2];
		$("#form_pie input[name=idioma]").val(idioma);
		$("#form_pie").submit();
	});
}
