$(document).ready(function() {
	$("li.button").hover(function() {

		$clicked = $(this);

		if(!$clicked.hasClass("row_high")) {
			$clicked.addClass("row_high");

			var idToLoad = $clicked.attr("id").split('-');

			$("#content").find("div:visible").fadeOut("fast", function() {
				if($("#content").find("div:visible").length == 0) {
					$(this).parent().find("#"+idToLoad[0]).fadeIn();
				}
			})

			$("#col1").find("div:visible").fadeOut("fast", function() {
				if($("#col1").find("div:visible").length == 0) {
					$(this).parent().find("#"+idToLoad[0]).fadeIn();
				}
			})

		}
		$clicked.siblings(".button").removeClass("row_high");
	});
});
