$(document).ready(function()
{
	$(".introduce").each(function()
	{
		var id = "#"+$(this).attr("ref");
		$(this).mouseover(function() {
			$(id).show();
			$(this).mousemove(function(e) {
				$(id).css("left", e.pageX - 30).css("top", e.pageY + 30);
			});
		}).mouseout(function() {
			$(id).hide();
		});
	});
	
	$(".introducesmall").each(function()
	{
		var id = "#"+$(this).attr("ref");
		$(this).mouseover(function() {
			var pos = $(this).offset();
			var height = $(this).height();
			var width = $(this).width();
			$(id).css("left", pos.left).css("top", pos.top + height + 25).show();
		}).mouseout(function() {
			$(".introducepartsmall").each(function(){ $(this).hide(); });
		});
	});
});

function selectSubmenu(id)
{
	$(".menu").each(function()
	{
		$(this).removeClass("selected");
	});
	$("#a"+id).addClass("selected");
}

function openSubmenu(id)
{
	$(".submenu").each(function()
	{
		$(this).hide();
	});
	$("#"+id).show();
	selectSubmenu(id);
}

function closeSubmenu(id)
{
	$(".submenu").each(function()
	{
		$(this).hide();
	});
	$("#hp").show();
	
	$(".menu").each(function()
	{
		$(this).removeClass("selected");
	});
	$("#ahp").addClass("selected");
}