$(function (){
	$(".gallery a").lightBox();
	$("#nav li").each(function () {
		if($(this).children(".megaMenu").length == 1 ) {
			$(this).hover(function () {
				$(this).children(".megaMenu").toggleClass("hide");
			}, function () {
				$(this).children(".megaMenu").toggleClass("hide");
			});
		}
	});
	$("textarea").autogrow();
	$("a[rel='external']").attr("target", "_blank")
	//$("li").each(function() {
	//	if ($(this) != $("#nav li")){
	//		$(this).css("color", "#d8e464").wrapInner("<span style='color: #444;'>");
	//	}
	//});
/*
	$(".megaMenu li").hover(function () {
		$(this).css("background-color", "#b9d860");
	}, function () {
		$(this).css("background-color", "#d8e464");
	});
*/
});

