     $(document).ready(function(){
     
     	$(".about a").hover(function() {
     		$("#thumb-grid li#img-01").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-06").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-14").animate({opacity: "show"}, "100");
     	}, function() {
     		$("#thumb-grid li").animate({opacity: "hide"}, "1250");
     	});
     
     	$(".contact a").hover(function() {
     		$("#thumb-grid li#img-11").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-16").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-18").animate({opacity: "show"}, "100");
     	}, function() {
     		$("#thumb-grid li").animate({opacity: "hide"}, "1250");
     	});
     
     	$(".branding a").hover(function() {
     		$("#thumb-grid li#img-03").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-17").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-19").animate({opacity: "show"}, "100");
     	}, function() {
     		$("#thumb-grid li").animate({opacity: "hide"}, "1250");
     	});
     
     	$(".fashion a").hover(function() {
     		$("#thumb-grid li#img-05").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-07").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-20").animate({opacity: "show"}, "100");
     	}, function() {
     		$("#thumb-grid li").animate({opacity: "hide"}, "1250");
     	});
     
     	$(".product a").hover(function() {
     		$("#thumb-grid li#img-02").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-12").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-21").animate({opacity: "show"}, "100");
     	}, function() {
     		$("#thumb-grid li").animate({opacity: "hide"}, "1250");
     	});
     
     	$(".corporate a").hover(function() {
     		$("#thumb-grid li#img-04").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-08").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-22").animate({opacity: "show"}, "100");
     	}, function() {
     		$("#thumb-grid li").animate({opacity: "hide"}, "1250");
     	});
     
     	$(".websites a").hover(function() {
     		$("#thumb-grid li#img-10").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-15").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-23").animate({opacity: "show"}, "100");
     	}, function() {
     		$("#thumb-grid li").animate({opacity: "hide"}, "1250");
     	});
     
     	$(".news a").hover(function() {
     		$("#thumb-grid li#img-09").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-13").animate({opacity: "show"}, "100");
     		$("#thumb-grid li#img-24").animate({opacity: "show"}, "100");
     	}, function() {
     		$("#thumb-grid li").animate({opacity: "hide"}, "1250");
     	});
     
     
     });