$().ready(function() {

$("#search").autocomplete("/deal/ajax", {
        minChars: 2,
        max: 12,
        autoFill: true,
        scrollHeight: 220

});

});
SFC = {};

function scrape(abbrev)
{
  SFC.index_to_refresh = "#abbrev";
  
  $.ajax({
    url: '/scrape.php?site=' + abbrev, 
    success: function(data) {
      refreshAtIndex();
    }
  });
}

function lightbox(url){
    $.post(url, function(data){
        $.modal(data, {
            position: ["25%", "25%"]
        });
    });
}

function send_twit(deal_id)
{
    $.post('/service/send_twit/' + deal_id, {status: $('#status')[0].value}, function(data){
        $.modal.close();
    });    
}

function productSearch(query)
{
	
}

function refreshAtIndex()
{
  //var url = document.location.protocol + "//" +  document.location.host + document.location.pathname + SFC.index_to_refresh;
 
	window.location.href = document.location.protocol + "//" +  document.location.host + document.location.pathname;
}