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