//-->> De SLIDE op de frontpage

//-->> De TIPS bij de POLL		
 $(function() {
      $('#tips_index [title]').tipsy({trigger: 'focus', gravity: 'n'});
    });			
//-->> De SUGGESTION BOX - PULLDOWN DISTILLERIES 		
function lookup(inputString) {
		if(inputString.length == 0) {
			// Hide the suggestion box.
			$('#suggestions').hide();
		} else {
			$.post("pulldown_distillery.php", {queryString: ""+inputString+""}, function(data){
				if(data.length >0) {
					$('#suggestions').show();
					$('#autoSuggestionsList').html(data);
				}
			});
		}
	} // lookup
	
	function fill(thisValue) {
		$('#inputString').val(thisValue);
		setTimeout("$('#suggestions').hide();", 200);
	}

//-->> De SHOWTRACKER LIVE

function show_tracker(){ 
$.ajax({ 
url: "jquery_index.php?act=showtracker", 
cache: false, 
success: function(html){ 

$("#index_tracker_blok_activity").html(html);
		
		}, 
	}); 
}
//-->> De WHOIS ONLINE LIVE
function show_whois(){	
$.ajax({ 
url: "jquery_index.php?act=showwhois", 
cache: false, 
success: function(html){ 

$("#index_whois_activity").html(html);  
		}, 
	}); 
}
setInterval(show_tracker, 60000); 
setInterval(show_whois, 60000);

