// JavaScript Document

$( function() {

	//$(".itemvaga").corner();
	$("#cidades li a").click( function() {
		var nommun = $(this).html();
		$("h3.cidade").text( nommun );
	} );

});


function carregaVagas ( p_codmun ) {
	if ( p_codmun > 0 ) {
		$("#relacao").html("<img src=\"/img/loading.gif\" />");
		$.ajax({
		  url: "/ajax/vagas.php",
		  data: "mun="+p_codmun,
		  cache: false,
		  success: function(html){
			$("#relacao").html(html);
			$(".itemvaga").corner();
		  }
		});
	}
}

