function xudmn(end){
	$inn = "<h2>Warning! Look at the browser bar, if the URL is not "+end+", then this a-hole copied my website.</h2>";
	$inn +=	"<p>What this means, is that this site is in copyright violation.</p><p>But don't fret, you can view the real site with it's current updates at <a href='"+end+"'>"+end+"</a></p>";	
	$html = "<div class='ovly' style='height: "+$(window).height()+"px; width: "+window.width+"px;'><div>"+$inn+"</div></div>";
	$('body').prepend($html);
	
}

$(document).ready(function(){
	var one = "el";
	var two = "ige";
	var thr = "ske.";
	var four = "co";
	var five = "m";
	var end = one+two+thr+four+five;
	var las = "http://"+end;
	if(location.host.toLowerCase() != end.toLowerCase()){
		xudmn(las);
	}	
});

