$(document).ready(function(){
	$("#EnlargingImg").hover(function() {
		$("#NetCMSTitle").css('color','white');
		$("#NetCMS").animate({ 
			height: "161px",
			width: "83px"
		}, 300);
	},function() {
		$("#NetCMSTitle").css('color','#DBD3D1');		
		$("#NetCMS").animate({ 
			height: "148px",
			width: "77px"
	}, 300);
	});
	
	$("#WebSiteArt").hover(function() {
		$("#WebSiteArtTitle").css('color','white');
		$("#WebSiteArtLogo").animate({ 
			height: "130px",
			width: "90px"
		}, 300);
	},function() {
		$("#WebSiteArtTitle").css('color','#DBD3D1');		
		$("#WebSiteArtLogo").animate({ 
			height: "110px",
			width: "80px"
		}, 300);
	});	
});