checkAffiliate();
$(document).ready(function(){
	 $('img[@src$=.png]').ifixpng();
});

/*function checkAffiliate() {
	var anchor=self.document.location.hash;
	if (anchor.search("#aff") >= 0) {
		var aff = anchor.replace("#aff","");
		$.get("http://store.keystonelearning.com?affiliate=" + aff);
	}
}*/

function checkAffiliate() {
	var anchor=self.document.location.hash;
	var pathLoc=self.document.location.pathname;
	if (anchor.search("#aff") >= 0) {
		var aff = anchor.replace("#aff","");
		document.location.href= "http://store.keystonelearning.com/?r="+pathLoc+"&affiliate="+aff;
	}
}


