// JavaScript Document created by ibnu
$(document).ready(function(){	
	$('#search_box').example(function() {
  		return $(this).attr('title');
	});
	$('#search_box').keyup(function(){
		if($(this).value == 0){
			$('#suggestions').fadeOut(); // Hide the suggestions box
		}else{			
			if($(this).val().length>3){
			$.ajax({
  				type: 'POST',
				data: 'key='+$('#search_box').val(),
   				url: window.location.protocol+'//'+window.location.host+'/index.php/en/searching/irajax',
   				success: function(html){
					$('#suggestions').fadeIn();
					$('#suggestions').html(html);
   				}
			});
			}
		}
	})	
	$('#search_box').blur(function(){
		$('#suggestions').fadeOut();
	});
})
