// JavaScript Document
/*$(document).ready(function(){
	$("#saludos, .contentpost, #buscar, #categorias, #archivos, .logos, #arriba, .linkcomentarios, .titcomentarios, .fecha, .comentario, .formcomentario").dropShadow( 2, 2, 2, .5, "#03f", true);
	
});*/



$(document).ready(function(){
	/*$("#Menu").hide();*/
	
		$("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;
		});
	
	
	
});
