$(document).ready(function(){
	
		$(".infoWrapper p.information").mouseover(function(){
		$(this).next("div.infoContent").stop(true, true).fadeIn(500);
	});
		$(".infoWrapper p.information").mouseout(function(){
		$(this).next("div.infoContent").stop(true, true).fadeOut(500);
	});
		$("p.information a").click(function(){
		return false;
	});
});
