// Begin jQuery
 
$(document).ready(function() {
 
/* =Reflection Nav
-------------------------------------------------------------------------- */	
 
    // Append span to each LI to add reflection
 
    $("#movingimages").append("");	
 
    // Animate buttons, move reflection and fade
 
    $("#movingimages a").hover(function() {
        $(this).stop().animate({ marginLeft: "10px" }, 200);
        $(this).parent().find("span").stop().animate({ marginLeft: "18px", opacity: 0.25 }, 200);
    },function(){
        $(this).stop().animate({ marginLeft: "0px" }, 300);
        $(this).parent().find("span").stop().animate({ marginLeft: "1px", opacity: 1 }, 300);
    });
	
});
