$(function() {

	// TARGET BLANK XHTML STRICT
	$('a[@rel$="external"]').bind("click", function(){
		this.target = "_blank";
	});
	
});

$(window).load(function(){
	var height0 = $("#colRight").height();
	var height1 = $("#colLeft").height();
	
	maxHeight = Math.max(height0,height1);
	if(height0 >height1)
	{
		maxHeight = height0;
		$("#colRight").height(maxHeight);
		$("#content").height(maxHeight-52);
	}
	//alert(height0+' | '+height1);
	
	

	
});