// JavaScript Document


//homepage 
function evenout(){
	if($("#right_column").height() < $("#content_homepage").height()){
		$("#right_column").height($("#content_homepage").height());			
	}
	else{
		$("#content_homepage").height($("#right_column").height());
	}	
}

//everypage except for the blog and homepage 
function evenout_standard(){
	if($("#left_column").height() < $("#content").height()){
		$("#left_column").height($("#content").height());			
	}
	else{
		$("#content").height($("#left_column").height());
	}
}

//blog
function evenout_blog(){
	if($("#left_column").height() < $("#content").height()){
		$("#left_column").height($("#content").height());			
	}
	else{
		$("#content").height($("#left_column").height());
	}
}

//first version
function evenout_alpha(){
		if($("#left_column").height() < $("#content").height()){
			$("#left_column").css("height", $("#content").height());
		}
		else{
			$("#content").height($("#sub_menu").height());
		}
}
