	
	
		$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements
				$("a[rel='largePic']").colorbox();
			
			});
		
		
		
		
/* NETWORLIST - TAKEN OFF 		
		function trans() {
			
			$("#network-list").show();													
			
		 }
		 
	
		 
		$(document).ready(function()
		{
			$('#network-list').hover(function(){ 
				mouse_is_inside=true;
			
				
			}, function(){ 
				mouse_is_inside=false; 
				
				$('#network-list').hide();
			});				
		});
*/		
		
		$('body').supersleight();
		
		

    


	function lookup(ps_searchs) {
		if(ps_searchs.length == 0) {
			// Hide the suggestion box.
			$('#suggestions').hide();
		} else {
			
			$.post("inc-search.php", {queryString: ""+ps_searchs+""}, function(data){
				if(data.length >0) {
					$('#suggestions').show();
					$('#autoSuggestionsList').html(data);
				}
			});
		}
	} // lookup
	

function fill(thisValue) {
		$('#search-field').val(thisValue);
		setTimeout("$('#suggestions').hide();", 200);
		setTimeout("document.ser.submit();",200);

	}

