function load_contactos() {
		set_bullet_empresa('contactos_bullet');
		load_html_empresa('smarty/templates/contactos.tpl.html');
}

function load_recepcion() {
		set_bullet_empresa('recep_arch_bullet');
		load_html_empresa('smarty/templates/recepcion_archivos.tpl.html');
	
}

function load_home() {
		set_bullet_empresa('home_bullet');
}
function parseurl() {
	var url;
	url=window.location;
	if (/#contactos/.test(url)) {
		load_contactos();
	} else if (/#recepcion_archivos/.test(url)) {
		load_recepcion();
	} else {
		load_home();
	
	}
}
$(document).ready(function() {
	parseurl();
});


