
					$(document).ready(function(){
						//Horizontal Sliding
						$('.boxgrid.slideright').hover(function(){
							$(".cover", this).fadeOut('200');
						}, function() {
							$(".cover", this).fadeIn('200');
						});
					});
				
				

