
	$().ready( function(){
		inicia_busca();
		inicia_links_externos();
		//checa_navegador();
	} );

	function inicia_busca(){
		$( "#s" ).focus( function(){
			if( $( "#s" ).val()=="Faça sua busca..." ){
				$( "#s" ).val( "" );
			}
		} );
		$( "#s" ).blur( function(){
			if( $( "#s" ).val()=="" ){
				$( "#s" ).val( "Faça sua busca..." );
			}
		} );
	}

	function inicia_links_externos(){
		$( "a.externo, a.iexterno, a.link-download" ).click( function(){
			window.open( $( this ).attr( "href" ) );
			return false;
		} );
	}

	function checa_navegador(){
		//if( $.browser.msie && $.browser.version<7 ){
			var img = location.href+"wp-content/themes/downloadlegal/images/navegadores.png";
			var navegadores = [ [ "http://www.mozilla.com/firefox", "Mozilla Firefox" ], [ "http://www.apple.com/safari", "Apple Safari" ], [ "http://www.google.com/chrome", "Google Chrome" ], [ "http://www.opera.com/", "Opera" ], [ "http://www.microsoft.com/ie", "Microsoft Internet Explorer" ] ];
			var aviso = "<div style=\"margin:0;height:26px;background:#53676c;\"><ul style=\"list-style:none;margin:0 auto 0 auto;width:1024px;\"><li style=\"float:left;color:#96a3a6;line-height:26px;\"><strong>Atualize seu navegador agora</strong> e redescubra a internet</li><li style=\"float:left;\"><ul style=\"list-style:none;margin:0;padding:0 11px 0 12px;width:125px;height:26px;background:url("+img+");\">";
			for( var i=0;i<navegadores.length;i++ ){
				aviso += "<li style=\"margin:0;float:left;\"><a href=\""+navegadores[ i ][ 0 ]+"\" style=\"display:block;width:25px;height:20px;overflow:hidden;text-indent:-500px;\" title=\""+navegadores[ i ][ 1 ]+"\" onclick=\"window.open( this.href );return false\">"+navegadores[ i ][ 1 ]+"</a></li>";
			}
			aviso += "</ul></li><li style=\"float:left;color:#96a3a6;line-height:26px;\">Obtenha mais segurança e facilite a vida de quem desenvolve este site</li></div>";
			$( "body" ).before( aviso );
		//}
	}