$(document).ready(function(){

	$("#col4a a").hover(function() {
		$(this).next("div").fadeIn("slow");
	}, function() {
		$(this).next("div").fadeOut("fast");
	})
	$("#col2a a").hover(function() {
		$(this).next("div").fadeIn("slow");
	}, function() {
		$(this).next("div").fadeOut("fast");
	})
	$("#col3a a").hover(function() {
		$(this).next("div").fadeIn("slow");
	}, function() {
		$(this).next("div").fadeOut("fast");
	});
});
