		
			$(document).ready(function(){
			
				//Case Studies Horizontal Sliding
				$('.boxgrid.slideright').hover(function(){
					$(".cover", this).stop().animate({left:'325px'},{queue:false,duration:300});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
				});
				
				
				
				//Services Verticle Sliding
				$('.boxgridServices.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'35px'},{queue:false,duration:300}); //how high the address slides
				}, function() {
					$(".cover", this).stop().animate({top:'160px'},{queue:false,duration:160}); //how much down the address slides to get out of page
				});
				
				
				$('.boxgridServices.captionfull').hover(function(){
					$(".display", this).stop().animate({top:'160px'},{queue:false,duration:300}); //how far the strapline slides down to get out of the page
 
				}, function() {
					$(".display", this).stop().animate({top:'35px'},{queue:false,duration:160}); //how far the strapline sides up
				});
			
				
			
				
					
				
			});
				
				
				
				
		
				
	
