$(document).ready(function(){
$('.q5c').click(function(){
				   
	var x = $('#q51').html();
	var a = $('#q51').attr("title");
	var y = $(this).html();
	var b = $(this).attr("title");
	
	$.ajax({
		type: "GET",
		url: this.title,
		cache: false,
		success: function(html){
			$("#q5ajax").empty().html(html);
		}
	});
	 
	$(this).empty().html(x);
	$('#q51').empty().html(y);
	$(this).attr({ title : a});
	$('#q51').attr({title : b});
	

	return false;
});
$('.ball .balao').hide();
$('.intpeople').mouseover(function(){
	$('.ball .balao').hide();
	$('.ball .balao',this).show();
	return false;
},function(){ return false; });
});
