
$(function(){
					 
var bodyIdAttribute = $('body').attr('id');
  if(bodyIdAttribute == 'pageLP'){
    $.cookie('flex', null,{path:'/'} );
    $.cookie('flex','entry', {path:'/'} );
  }
	
  if(bodyIdAttribute == 'pageSharedMatch' || bodyIdAttribute == 'pageDOSMatch' ){
    if($.cookie("flex")=='exit') {
      location.reload(true);
    }		
  }	

  if(bodyIdAttribute == 'pageUpsell' ){
    if($.cookie("flex")=='exit') {
      location.reload(true);
    }		
  }
	
  if(bodyIdAttribute == 'pageOCP'){
	  $.cookie('flex','exit',{path:'/'} );
	}

});