$(document).ready(function(){
	$("#show_solutions").mouseover(function(event){
		event.preventDefault();
		$(content_solutions).fadeIn("slow");
		$(content_design).fadeOut("slow");
		$(content_ilustrations).fadeOut("slow");
	});
	$("#show_design").mouseover(function(event){
		event.preventDefault();
		$(content_solutions).fadeOut("slow");
		$(content_design).fadeIn("slow");
		$(content_ilustrations).fadeOut("slow");
	});
	$("#show_ilustrations").mouseover(function(event){
		event.preventDefault();
		$(content_solutions).fadeOut("slow");
		$(content_design).fadeOut("slow");
		$(content_ilustrations).fadeIn("slow");
	});
});
