$(document).ready(function(){
 		Results();
  });

  function Results(){
  
  var type = window.location.pathname.substr(1);
  var keyword = window.location;
  //key = keyword.split('=');
 // alert(key);
 // alert(keyword);
  
  if(type== 'search') type = 'web';
  else if(type == 'videos') type ='video';
  

  	$.post(HTTP+'ajax/?search_recent_results',{type:type},function(response){
    			update = response.split('|||');
    			if(update[0] == 1 ){
    			 $('div#recent_results').html(update[1]);
    			}
    		
    		});
  }
  