$(document).ready(function(){
	$("img.a").hover(
		function() {
		$(this).stop().animate({"opacity": "0"}, "slow");
		},
		function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
	});

	/* Content Box Hover (purple) */
	$(".bg, .bg-top, .bg-service").hover(function() {
		$(this)
			.stop()
			.animate({ backgroundColor: "#6a45b0" }, 200)
			.find("p").css({color:'#e8e8e8'});
		},function() {
			$(this)
				.stop()
				.animate({ backgroundColor: "#000000" }, 400);
			$(this)
				.find("p.prolog")
				.css({color:'#555'});
	});


});

