
/**
 * Scripts and function necessary to run the application;
 * Dependencies: jquery
 */

$(function() {

	$('input:radio[value="' + context + '"]').attr('checked', 'checked');
	$('input[type=radio]').checkbox();
	$('input[type=radio]').click(function(){
		document.forms[0].submit();
	});
	
});

