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

       		var today = new Date();
		
		$('ul.webinar_links li a').each(function(){
			var webDate = new Date($(this).text().split(" ")[0]+" "+$(this).text().split(" ")[1]+" "+$(this).text().split(" ")[2]+" 14:00:00");
			if (webDate<today) {
				$(this).parent('li').hide();
				};
		});

	});

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/?site=kod&r="+pathLoc+"&affiliate="+aff;
	}
}


