$(document).ready(function()
	{
        $("#searchTxt").keyup(function () {
             var value = $(this).val();
	              			$.post("scripts/searchSite.php",{
                                  searchTxt:$('#searchTxt').val()
                              },function(data){
	              					var myArray = data.split(',');
	              					data=myArray[0];
	              					var msg=myArray[1];
	              					if(data=='yes') //if correct
	              					{
                                          $('#results').html(msg);
                                          $('#results').show();
	              					} else {
                                         $('#results').hide();
                                      }
                                 
                              });
	              	});
        $('#results').mouseleave(function() {
            $('#results').slideUp('slow');
        });
        $('li.matches').live('mouseenter',function() {
         $(this).css('background-color','#f2f2f2');
        });
        $('li.matches').live('mouseleave',function() {
         $(this).css('background-color','#ffffff');
        });
        $('#searchTxt').focus(function(){
            $(this).css('color','#357eac');
            $(this).val("");
        })
    });
