/**
 * @author IBICT
 * @copyright 2010
 * 
 * Basic HTML to be included for Government Identification bar in PHP Websites
 */
function gov_bar(){
	var mct_alt = 'Minist\u00E9rio da Ci\u00EAncia e Tecnologia';
	var fed_alt = 'Portal Brasil';

	var gov_bar	=	'<div class="govbar">'+
					'	<div class="fed_logo">'+
					'		<a title="' + fed_alt + '" href="http://www.brasil.gov.br" target="_blank">&nbsp;</a>' +
					'	</div>' +
					'	<div class="min_logo">' +
					'		<a title="' + mct_alt +'" href="http://www.mct.gov.br" target="_blank">&nbsp;</a>' +
					'	</div>' +
					'</div>';
	
	return gov_bar;
}
