$(document).ready(function(){

	// Sliding box - homepage
	if ($('body').hasClass('home')) {
		$('.boxgrid').hover(function(){
			$('.boxcaption', this).stop().animate({top:'90px'},{duration:500});
		}, function() {
			$('.boxcaption', this).stop().animate({top:'160px'},{duration:500});
		});
	}

	// Sliding box - service page
	if ($('body').hasClass('service')) {
		$('.boxgrid').hover(function(){
			$('.boxcaption', this).stop().animate({top:'75px'},{duration:500});
		}, function() {
			$('.boxcaption', this).stop().animate({top:'160px'},{duration:500});
		});
	}
	
});