// JavaScript Document

$(document).ready(function(){
						   
	
//textos captaciones
	$("div#Menu").oneTime(1, function() {
					$(this).hide();
				}).oneTime(4250, "soon", function() {
					$(this).fadeIn("slow");
				});
	
	$(".boton a img").mouseover(function () {
      $(this).css("top" , "-38px");
    });	
	
	$(".boton a img").mouseout(function () {
      $(this).css("top" , "0");
    });	
	
	$(document).pngFix();

			$("#CH #texto3").hide();
   			$("#CH").hover(
				function () {
					$("#CH #texto3").slideDown(500);
     			}, 
      			function () {
		  			$("#CH #texto3").slideUp(500);
				
			});
			
			$("#CV #texto3").hide();
			
			$("#CV").hover(
				function () {
					$("#CV #texto3").slideDown(500);
     			}, 
      			function () {
		  			$("#CV #texto3").slideUp(500);
				
			});
			



    $(".validar").validate();
	
	
	

		


});


