// JavaScript Document

$(function(){
	var noticia;	
	var hash = window.location.hash;
	if (hash !='')
	{
		noticia = 'orcamento.php';
	} else {
		noticia = 'pag_home.php';
		
	}
		 $("#interno").load(noticia);		
	
})
