$(document).ready(function(){
	var hoje = new Date();
	
	if(hoje.getHours() > 12)
	{
		var hora_local = hoje.getHours() - 12;
		var ext = 'pm';
	}else if(hoje.getHours() == 12){
		var hora_local = hoje.getHours();
		var ext = 'pm';
	}else{
		var hora_local = hoje.getHours();	
		var ext = 'am';
	}
	
	if(hoje.getMinutes() < 10)
	{
		var minutos_local = '0' + hoje.getMinutes();	
	}else{
		var minutos_local = hoje.getMinutes();	
	}
	
	var localTime = hora_local + ':' + minutos_local +  ext ;
	
	setTimeout(function()
	{
		$('#localTime').html('teste');
	},1000);
})
