$(document).ready(function(){
	links.setTarget();
});

links = {
	setTarget : function(){
		$("a[rel^='external']").attr('target','_blank');
	}
}

function checkValues(which){
	if(which == 'checkboxDemo') {
		msg = "";
		$('#' + which + ' input[type=checkbox]').each(function(i){
			msg += 'Checkbox ' + (i+1) + ' is ' + $(this).attr('checked') + '\n';
		});
	}else{
		msg = "";
		$('#' + which + ' input[type=radio]').each(function(i){
			msg += 'Radio ' + (i+1) + ' is ' + $(this).attr('checked') + '\n';
		});
	}
	
	alert(msg);
}
