// JavaScript Document


		
		$(document).ready(function(){
				//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
				//Vertical Sliding
				$('.boxgrid.slidedown').click(function(){
					$(".cover", this).stop().animate({top:'-710px'},{queue:false,duration:3000});
					
				});
			});

