   
   
   
   
   $(document).ready(function() {
	   $('.img_bereastreet, .img_designsnack, .img_domscripting, .img_csscaseshow, .img_zengarden, .img_lightondark').hide();
		$('.footer_a:eq(0);').hover(function() {
		 $('.img_bereastreet').fadeIn(200);
		 }, function() {
		 $('.img_bereastreet').hide();
		 });
		$('.footer_a:eq(1);').hover(function() {
		 $('.img_designsnack').fadeIn(200);
		 }, function() {
		 $('.img_designsnack').hide();
		 });
		$('.footer_a:eq(2);').hover(function() {
		 $('.img_zengarden').fadeIn(200);
		 }, function() {
		 $('.img_zengarden').hide();
		 });
		$('.footer_a:eq(3);').hover(function() {
		 $('.img_lightondark').fadeIn(200);
		 }, function() {
		 $('.img_lightondark').hide();
		 });
		$('.footer_a:eq(4);').hover(function() {
		 $('.img_csscaseshow').fadeIn(200);
		 }, function() {
		 $('.img_csscaseshow').hide();
		 });
		$('.footer_a:eq(5);').hover(function() {
		 $('.img_domscripting').fadeIn(200);
		 }, function() {
		 $('.img_domscripting').hide();
		 });
		


 
		});
