// load files from Google
google.load("jquery", "1.3.2");
google.load("jqueryui", "1.7.1");
google.setOnLoadCallback(initialize);


// jQuery code
function initialize() {
	// set "other" option to "checked'
	$('.input_other').click(function () {
		// get the parent <li> element
		var parent = $(this).parent();
		$("input", parent)[0].checked = true;		
	});
	
};


function printObject(obj) {
	var str = '';
	for(prop in obj) { str+=prop + " value :"+ obj[prop]+"\n"; }
	alert(str);
}
