function extract_qs(match, referrer) {
    var idx = referrer.indexOf('?');
    var idx2;
    if (idx >= 0) {
        var qs = new String(referrer.substring(idx + 1));
        
        
        idx  = 0;
        idx2 = 0;
        while ((idx >= 0) && ((idx2 = qs.indexOf('=', idx)) >= 0)) {
            var key, val;
            key = qs.substring(idx, idx2);
            idx = qs.indexOf('&', idx2) + 1;
            if (key == match) {
                if (idx <= 0) {
                    return qs.substring(idx2+1);
                } else {
                    return qs.substring(idx2+1, idx - 1);
                }
            }
        }
    }
    return null;
}

function handle_referrer() {
    var regex = new RegExp('');
    query_string = null;
    search_engines = [
        ['google\\.', 'q'],                             // Google
        ['search\\.yahoo\\.', 'p'],                     // Yahoo
        ['search\\.msn\\.', 'q'],                       // MSN
        ['search\\.live\\.', 'query'],                  // MSN Live
        ['bing\\.', 'q'],                               // bing
    ];
    var referrer = document.referrer;
    for (var i = 0; i < search_engines.length; i ++) {
        var se = search_engines[i];
        regex.compile('^http://(www\\.)?' + se[0], 'i');
        var match = referrer.match(regex);
        if (match) {
            query_string = extract_qs(se[1], referrer);
            return query_string;
        }
    }
    return null;
}

function media_start(s) {
    
    
	//$('.media').each(function() {
        //$(this).attr('href', 'http://www.acaiberryselect.com/?aid=347457');
	//});

    // Acai Burn Detox

    
    var kw = '';
    try {
        kw = handle_referrer();
    } catch (e) {}
    
    
    
    
    $('#banner').html('<a href="http://banners.moreniche.com/go.php?id=8539&w=213382&s=148" target="_blank"><img src="http://banners.moreniche.com/show.php?id=8539&w=213382&s=148&e=gif" alt="PureAcaiBerry" /></a>');
    
    $('#headspace').attr('href', 'http://banners.moreniche.com/go.php?id=8877&w=213382&s=157');
    $('#headspace').html('<img src="http://banners.moreniche.com/show.php?id=8877&w=213382&s=157&e=gif" alt="Phen375" />');
    
    

    
    $('#sidespace2').attr('href', 'http://banners.moreniche.com/go.php?id=8410&w=213382&s=148');
    $('#sidespace2').html('<img src="http://banners.moreniche.com/show.php?id=8410&w=213382&s=148&e=gif" alt="PureAcaiBerry" />');

    $('#sidespace1').attr('href', 'http://banners.moreniche.com/go.php?id=4330&w=213382&s=38');
    $('#sidespace1').html('<img src="http://banners.moreniche.com/show.php?id=4330&w=213382&s=38&e=jpg" style="max-width:400px;" alt="Proactol" />');

    // .notice
    //   	 Premium Acai Burn
    
    //hrf = 'http://www.cpaclicks.com/secure.asp?e=bvssysflnsdk&d=0&l=0&o=&p=0&subID1=text&subID2='+kw+'&subID3=&subID4=&subID5=';
    //notice = '<h2><a href="'+hrf+'">Acai Berry Free Trial Offer</a></h2>';
    //notice += '<p><a href="'+hrf+'">Click here now</a> to get our exclusive <a href="'+hrf+'">FREE TRIAL OFFER</a> at no risk.</p>';
    //$('.notice').each(function() {
        //$(this).html(notice);
	//});
    $('.notice').hide();    
}
