// JavaScript Document
// web/js/search.js
$(document).ready(function()
{
	//alert('loaded search');
  //$('#ajaxsearchbox .searchform input[type="submit"]').hide();
 // $('#search_keywords').value = 'search';
// 
//  $('#search_keywords').keyup(function(key)
//  {
//    if (this.value.length >= 3 || this.value == '' || this.value != 'search')
//    {
//		//alert('test');
//      $('#loader').show();
//      $('#content').load(
//        $(this).parents('form').attr('action'),
//        { query: this.value + '*' },
//        function() { $('#loader').hide(); }
//      );
//    }
//	if (this.value == 'search') {
//		
//		
//	}
//	
//  });
});

