$("#a_blog").hover(function(){
	$("#img_blog").attr("src", "images/Blog.png");
	$("#blogFeed").addClass("highlight");
	$("#BlogTitle").show("slow");
}, function(){
	$("#img_blog").attr("src", "images/Blog-closed.png");
	$("#blogFeed").removeClass("highlight");
	$("#BlogTitle").css("display", "none");
});

$("#a_tech").hover(function(){
	$("#img_tech").attr("src", "images/Tech-On.png");
	$("#techFeed").addClass("highlight");
	$("#TechTitle").show("slow");
}, function(){
	$("#img_tech").attr("src", "images/Tech-Off.png");
	$("#techFeed").removeClass("highlight");
	$("#TechTitle").css("display", "none");
});

$("#a_photo").hover(function(){
	$("#img_photo").attr("src", "images/Photo-foto.png");
	$("#photoFeed").addClass("highlight");
	$("#PhotoTitle").show("slow");
}, function(){
	$("#img_photo").attr("src", "images/Photo-Frame.png");
	$("#photoFeed").removeClass("highlight");
	$("#PhotoTitle").css("display", "none");
});
