$(function sidebar(){
	$(".logo").mouseover(function(){
		$(this).attr("src",$(this).attr("src").replace("_a.png","_b.png"));
	}
	);
	$(".logo").mouseout(function(){
		$(this).attr("src",$(this).attr("src").replace("_b.png","_a.png"));
	}
	);
}
);

