/*
function hideRemoved(remove_check_id, div_id){
	if( $(remove_check_id).checked ){
		$(div_id).addClassName('removed');
	}else{
		$(div_id).removeClassName('removed');
	}
}

function checkAll(selector){
	$$(selector + ' input[type=checkbox]').each(function(box){ box.checked = 1; });
	return false;
}
function checkNone(selector){
	$$(selector + ' input[type=checkbox]').each(function(box){ box.checked = 0; });
	return false;
}
function checkToggle(selector){
	$$(selector + ' input[type=checkbox]').each(function(box){ box.checked = !box.checked; });
	return false;
}

Event.observe(window,"load", function(){
	var to_remove = $$("input.remove_check");
	for(var i=0; i<to_remove.length; i++){
		var remove_id = to_remove[i].id;
		var div_id = remove_id.replace(/-remove/,'');
		if($(div_id) && $(remove_id)){
			hideRemoved(remove_id, div_id);
		}
	}
});
*/

if( (typeof(isIE) == "undefined") || (isIE == false) ){ // if agent is NOT IE
	isIE = false;
}else{
	isIE = true;
}

$(document).ready(function(){
	if(!isIE) {
		$("#col2 h3").corner("tl bl 20px");
	}
	
	$("a[rel='external']").attr("target","_blank");

});