$(document).ready( function () {
	$("#beer_text").children("div").click( function() {
		if($(this).attr("class") != "beer_sort_selected")
		{
			$(this).children("div.text").fadeIn();
			$("div.beer_sort_selected").children("div.text").hide();
			$("div.beer_sort_selected").attr("class", "beer_sort");
			$(this).attr("class", "beer_sort_selected");
			$(this).children("div.header").children("span").removeClass("over");
		}
	});
	
	$("#beer_text").children("div").children("div.header").children("span").mouseover( function() {
		if($(this).parent().parent().attr("class") != "beer_sort_selected") {
			$(this).addClass("over");
		}
	});
	$("#beer_text").children("div").children("div.header").children("span").mouseout( function() {
		if($(this).parent().parent().attr("class") != "beer_sort_selected") {	
			// $(this).css({color: "#853f15", borderBottom: "1px dashed #853f15"});
			$(this).removeClass("over");
		}
	});
});


