$(document).ready(function(){
	 $("input:text:first").focus()

	 $(".changelanguage1").click(function(){
	   $("div#changelanguage").toggle("fast");
	   return false;
	 });

	 $(".firsttime").click(function(){
	   $("#firsttime").hide("slow");
	   $("#ads_top").show("fast");
		alert("ok");
	   $("#ads_top").load("http://www.afroo.org/include/firsttime.inc.php");

	   $("#ads_top").load("http://www.afroo.org/include/banners.inc.php");

	   return false;
	 });
});

function Banners(){
	   $("div#ads_top").show("fast");
	   $("div#ads_top").load("http://www.afroo.org/include/banners.inc.php");
}

function ChangeEngine(engine) {
	for (var i = 1; i <= 8; i++) {
		$("#engine" + i).hide("fast");
		$(".engine" + i).css({ backgroundColor:"white", fontWeight:"normal", color:"#B0B0B0" });

	}
	$("#engine" + engine).show("fast");
	$(".engine" + engine).css({ backgroundColor:"#ee852e", fontWeight:"normal", color:"#FFFFFF" });
	$("#engine" + engine + " :input:text:first").focus();

  	return false;
}


