/* 
 * Document: logo.js
 * Create on: 26-ene-2010
 * Description:
 * Author: Isabelo Pamies López
 * 
 * Copyright 2010 Biblioteca Virtual Miguel de Cervantes
 */


 /* = LOGO DE NAVEGATELWIMAX
	-------------------------------------------------------------------------- */

		// Append shadow image to each LI

		// Animate buttons, shrink and fade shadow
	$(document).ready(function() {
		$("#logo").hover(function() {
                    var e = this;
		    $(e).find("a").stop().animate({ marginLeft: "-1444px" }, 250, function() {
		    	$(e).find("a").animate({ marginLeft: "-1000px" }, 250);
		    })
                })
        });

	// End jQuery
