﻿ 
 
 $(document).ready(function(){
                 checkHTTPS();
                 if (navigator.userAgent.toLowerCase().indexOf("msie 6.0") != -1) {
                $(".HomepageOffersBg").css({"margin-top":"-26px" } ) } 
 
            function checkHTTPS() 
                {
			         var url = document.location.href;
			    
	                 if (url.indexOf("redesign") != -1 || url.indexOf("local") != -1) {
	                    return;
		                }
				
				    if (url.indexOf("https:") == 0) {
                        url = url.replace("https:", "http:");
                        document.location.href = url;
                        }
			    }
			});

