$(document).ready(function() {

	$('a[rel*="external"]').live('click',function(){ this.target='_blank'; });
	
	$('.admin table tr:nth-child(odd)').addClass('odd');
	
	var chkboxes = $('#inception INPUT[type="checkbox"]');

	chkboxes.each(function() {
		if($(this).attr('id') != '39') {
			$(this).click(function() {
				$('#39').attr('checked', false);
			});
		}
	});
	
	$('#39').click(function() {
		$(chkboxes).each(function() {
			if($(this).attr('id') != '39') {
				$(this).attr('checked', false);
			}
		});
		//console.log($(this));
		//console.log(el);
		//$(this).attr('checked', true);
	});	

});
