var aEngines = new Array();
aEngines[0]  = 'Google';
aEngines[1]  = 'Yahoo!'
aEngines[2]  = 'YouTube';
aEngines[3]  = 'Wikipedia';
aEngines[4]  = 'Google Images';
aEngines[5]  = 'Google Maps';
aEngines[6]  = 'eBay';
aEngines[7]  = 'Amazon';
aEngines[8]  = 'Ask.com';
aEngines[9]  = 'Live';
aEngines[10] = 'Facebook';
aEngines[11] = 'MySpace';
    
//aEngines[12] = 'Flickr'; 
aEngines[12] = 'CNN';
aEngines[13] = 'Reddit';
aEngines[14] = 'Digg';
aEngines[15] = 'MSN';
aEngines[16] = 'StumbleUpon';
aEngines[17] = 'Yahoo! Finance';
aEngines[18] = 'Metacafe';
aEngines[19] = 'Excite';
aEngines[20] = 'Google News';
aEngines[21] = 'Technorati';
aEngines[22] = 'ESPN';

var sShowEngines = getCookie('engines');
if ( !sShowEngines )
{
    setCookie('engines', '0,1,2,3,4,5,6,7,8,9,10,11', 86400000);
    sShowEngines = getCookie('engines');
}
var aShowEngines = sShowEngines.split(',');

function setEngine(e)
{
    var iKey;
    if ( window.event ) 
    {
        iKey = event.keyCode;    
    }
    else
    {
        iKey = e.keyCode;
    }

    if ( iKey == 13 )
    {
        doSearch(aShowEngines[0]);
    }
}

window.onkeyup = setEngine;
