$(document).ready(function() {


	var ht = $("#wrapper").height() - 280;
	$("#col_main").height(ht);
	$("#col_left").height(ht);
	$("#col_right").height(ht);
	
	$("a[rel='lightbox']").colorbox({transition:"fade"});
	
	
		$("a[href^=http]").each(function() {
			if(this.href.indexOf(location.hostname) == -1) {
				$(this).click(function(){window.open(this.href);return false;});
			}
		})
	
	
});
