$(function () {

	var url = window.location.href;	
	var test = "http://www.stimuluswatch.org/mediawiki/index.php";
	url = url.replace(test, "");
	
	if (url.substr(0,1) === "/")
	{
		var re = /title=\w+:\w+:\w+&/g;	
  		var matches = re.exec(url);
  		console.log(matches);		
	}

});
