$(function(){
	// Get Glow Effect		
		$(".hover").children("a").hover(function(){
		$(this).parent().children("div").stop().css({"display": "none", "opacity": "1"}).fadeIn("slow");
		},
		
		//Hover Out
		function(){
		$(this).parent().children("div").stop().fadeOut("slow");
		});
});

