jQuery(document).ready(function($) {

	$('a[class^=edition]').click(function() { 
		var edition = this.className.split(/-/)[1]; 
		$.cookie('edition', edition, { expires: 7, path: '/' });
		return true 
	});

});
