	var thisTemplate = window.location.toString().split("/")[3];
	if (thisTemplate=="sqaus" || thisTemplate=="sqnsw" || thisTemplate=="sqvic" || thisTemplate=="sqtas") {
		//Then good work!
	} else if (thisTemplate=="" || thisTemplate==undefined || thisTemplate==null){
		var thisTemplate="sqaus";
	}else {
		var thisTemplate="sqaus";
	};


	$(function(){
	$(".module_link a").click(function () { 
	var original_href = $(this).attr("href");
	var new_href = original_href + '&template=' + thisTemplate;
	$(this).attr("href", new_href);
    });
	});
