$(function() {
	$(".hover").hide();
	$(".hover_inv").show();
	$(".nav1").mouseover(function() {
		// Mouse entered nav item
		$(this).children(".hover").stop().fadeTo('slow', 1);
		//$(this).children(".hover_inv").stop().fadeTo('slow', 0);
	});
	$(".nav1").mouseout(function() {
		// Mouse entered nav item
		//$(this).children(".hover_inv").stop().fadeTo('slow', 1);
		$(this).children(".hover").stop().fadeTo('slow', 0);
	});
	$(".nav1").mouseup(function() {
		$(this).children(".hover").fadeTo('slow', 0).fadeTo('slow', 1).fadeTo('slow', 0);
		$(this).children(".hover").show();
		var link_href = $(this).children("a").attr("href");
		if (link_href && (link_href.length > 0)) {
			window.location.href = link_href;
		}
		$(this).children("a").click();
	});
	
	// Theme color chooser's
	$(".theme_color").mouseup(function() {
		$(this).children(".hover").fadeTo('slow', 0).fadeTo('slow', 1).fadeTo('slow', 0);
		$(this).children(".hover").show();
		var link_href = $(this).children("a").attr("href");
		if (link_href && (link_href.length > 0)) {
			window.location.href = link_href;
		}
		$(this).children("a").click();
	});
});
