	$(document).ready(function(){

	$(".cover", this).stop().animate({top:'210px'},{queue:false,duration:0});
	
		//Horizontal Sliding and gallery grid change
		$('.boxgrid.slideright').hover(function() {
			$(".cover", this).stop().animate({top:'55px'},{queue:false,duration:500});
			changeGrid($(this).attr('id'));
		}, function(){
			$(".cover", this).stop().animate({top:'210px'},{queue:false,duration:500});

		});

        // Return the pictures back to their original sources
        function returnToNormal() {

            $('#rhubarb img').attr('src', 'images/layout/khadi_prod_01_cover.png');
			
        }
	});
