// JavaScript Document

jQuery(function($) {
 
	var Engine = {
		utils : {
			ssl : function(){
				
				if (window.location.pathname.indexOf("/FormProcessv2.aspx") !== -1) { return; }
				
				if (window.location.hostname.indexOf(".worldsecuresystems.com") != -1){
					window.location.href = "http://matteformen.com" + window.location.pathname;
				}	
			},
	
	
			
	
		},
		
		
		};
	
	
	Engine.utils.ssl();

});

