$.noConflict();
(function($) { 
  $(function() {

	$('#max25valjare input:radio:nth(0)').attr("checked","checked");
	var s = $('#max25valjare input:radio:nth(0)').val();
	$("a#bestall").attr("href", s);
	$('input[name=abonnemang]').click(function(){
		var s = $(this).filter(':checked').val();
		$("a#bestall").attr("href", s);	
	});
	
	$('#max25valjare li').click(function(){
		$(this).children("input:radio").attr("checked","checked");
		var s = $(this).children("input:radio").val();
		$("a#bestall").attr("href", s);	
	});
	
});
})(jQuery);


