$(document).ready(function() {
	$(".videos .Videos ul li a").click(function() {
		$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: 'none',
					'transitionOut'	: 'none',
					'title'			: this.title,
					'width'			: 680,
					'height'		: 495,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
					'wmode'		: 'transparent',
					'allowfullscreen'	: 'true'
					}
				});

		return false;
	});
	
	var varPage = $("#page").val();
	if (varPage == "qatraducciones.com.ar") {
		$("#menu").corner();
		$("#menu ul li").corner();
		$("#text").corner();
		$(".FormLine").corner();
	}
	//$("form").kform();
	var lang = $("#LANG").data("lang");
	if ($.isDefined(lang)) {
		$("#LANG").html("Cargando idiomas...");
		$("#LANG").load("sites/" + varPage + "/lang.htm", function() {
			$("#LANG a").click(function() {
				var locale = $(this).data("lang");
				$.get("php/page_ajax.php", {"action":"locale", "new_locale":locale}, function(data) {
					window.location.reload(true);
				});
				return false;
			});
		});
	}
	//alert("test");
});
