$(document).ready(function()
{
		$.post("res/jqueryResponse.php",{
			func:"noticiasHome"
			},function(response){
				$("#noticias").html(response);
			});
});