// Rebate intruder 

$(document).ready(function() { 
  if (!seen_rebate()) { setTimeout("start_slider();", 15000); }
});
  
function start_slider() {
  $("#popSlider").animate({"left": "+=75%"}, 5000);
}

function closepopslider(the_url) {
  
  $("#popSlider").hide();
  
  document.location.href = the_url;
}

function seen_rebate() {
  return ($.cookie('set_oceano_view') == 'oceano_popup');
}

function set_rebate_cookie() {
  $.cookie('set_oceano_view', 'oceano_popup',{expires:60});
}


