// REDIRECTOR
/*
$(document).ready(function() {	
	
	var currentHostName = window.location.hostname;

	if (currentHostName != 'ksfltd.com' && currentHostName != 'www.ksfltd.com') {
		// If the document was requested from any domain apart from ksfltd.com
		// Get ALL <A... tags
		var theA = document.getElementsByTagName('a');
		var tmpHREF = '';
		var tmpINNERHTML = '';
		
		// Replace HREF property
		for(var i=0;i<theA.length;i=i+1){		
			if(theA[i].href.indexOf('http') > -1) { 	
				tmpINNERHTML = theA[i].innerHTML;	
				theA[i].href = theA[i].href.replace(currentHostName,'ksfltd.com');
				if (theA[i].innerHTML.length != tmpINNERHTML.length) theA[i].innerHTML = tmpINNERHTML;	
			}
			
		}
		
	}

});
*/

