$(document).ready(function() {
	// Navigation Bar Slides
	$("#nav-one li").hover(
		function () {
			$(this).children("#nav-one li ul").show();
	 	},
		function () {
			$(this).children("#nav-one li ul").hide();
		}
	 );
	
	// Search Box
	$("#sinput").focus(
		function () {
			if ($(this).val() == "e.g. jailbreak") {
				$(this).val("");
				$(this).css("background-image", "url(/images/mag.png)");
			}
		 }
	);
	$("#sinput").blur(
		function () {
			if ($(this).val() == "") {
				$(this).val("e.g. jailbreak");
			}
		 }
	);
	
	$("#sinput").keyup(
		function() {
			$("#sres").show();
			var search = $("#sinput").val();
			$.ajax({
				type: "POST",
				url: "/scripts/autocom.php",
				data: "search="+search+"&type=all",
				success: function(html) {
					var result = html;
					$("#sres").html(result);
				}
			});
		}
	);

	
	// Contact Form
	 $("input,textarea").focus(
		function () {
			$(this).css("color","#012953");
			$(this).css("background-color","#99CCFF");
		}
	);
	 $("input,textarea").blur(
		function () {
			$(this).css("color","#7d7d7d");
			$(this).css("background-color","#FFFFFF");
		}
	);
});