// JavaScript Document

// http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/

//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
//Vertical Sliding
$(document).ready(function(){
				//Full Caption Sliding (Hidden to Visible)
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'205px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'260px'},{queue:false,duration:160});
				});
			});

