/**
 * 
 */

$(document).ready(function()
{
  $('.search input[type="submit"]').hide();
 
  $('#search_keywords').keyup(function(key)
  {
    if (this.value.length >= 3)
    {
      $('#loader').show();
      $('#searchResult').load(
        $(this).parents('form').attr('action'),
        { query: this.value + '*' },
        function() { $('#loader').fadeOut(500); }
      );
    }
    else if (this.value == '')
    {
    	$('#searchResult').empty();
    }
  });
  
  $('#search_vod_keywords').keyup(function(key)
  {
    if (this.value.length >= 3)
    {
      $('#loader').show();
      $('#searchResult').load(
        $(this).parents('form').attr('action'),
        { query: this.value + '*',type_vod:'search' },
        function() { $('#loader').fadeOut(500); }
      );
    }
    else if (this.value == '')
    {
    	$('#searchResult').empty();
    }
  });
  
});
