// JavaScript Document--- Rollers and Fun!!!

	$(document).ready(function(){
				$('.boxgrid.caption').hover(function(){
					$(".cover", this).stop().animate({opacity: 1.0, ease: "swing", left:'18px', top:'22px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({opacity: 0.0, ease: "swing",  left:'18px', top:'496px'},{queue:false,duration:500});
				});
			});
	

	$(document).ready(function() {
		
		$("#nav-reflection a").hover(function() {
		    $(this).stop().animate({ marginTop: "0px", opacity: 1, ease: "swing" }, 100);
		   ;
		},function(){
		    $(this).stop().animate({ marginTop: "0px", opacity: 0.7 }, 150);
		});
	
	});
