jQuery(function($) {

  if((jQuery.url.param('affiliate') != "") && (jQuery.url.param('affiliate') != undefined)){
    $.cookie('affiliate', jQuery.url.param('affiliate'), { path: '/winter-break', expires: 90, domain: 'grandsierraresort.com' });
  }
		
		if((jQuery.url.param('referral') != "") && (jQuery.url.param('referral') != undefined)){
    $.cookie('referral', jQuery.url.param('referral'), { path: '/winter-break', expires: 90, domain: 'grandsierraresort.com' });
				
				if(jQuery.url.param('referral').indexOf("swat") != -1){
				  $("#rwb_flyer").attr("src","/custom/uploads/files/winter-break/Renowinterbreak_swat.jpg");
				}
				else{
					 $("#rwb_flyer").attr("src","/custom/uploads/files/winter-break/Renowinterbreak_grandsierraresort.jpg");
				}
  }
		else if (document.referrer != "" || document.referrer != null) {
			 var host = jQuery.url.setUrl(document.referrer).attr("host");
			
		  $.cookie('referral', host, { path: '/winter-break', expires: 90, domain: 'grandsierraresort.com' });
				
				$("#rwb_flyer").attr("src","/custom/uploads/files/winter-break/Renowinterbreak_grandsierraresort.jpg");
		}

});