// JavaScript Document

$(document).ready(function(){

//link img
		$("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();
	
	$(".link").mouseover(function () {
      $(this).fadeTo("fast", 0.33);
    }).mouseout(function () {
      $(this).fadeTo("fast", 1);
    });
	
	$(".external").click( function() {
			window.open( $(this).attr('href') );
			return false;
		});
});