/**
 *
 */
function goTo(url)
{
	document.location.href = url;
}

var id;
$(document).ready(function()
{
	$('.subnav a.suba').hover(function()
	{
		id = $(this).attr('id');
		id = id.substr(2);
		
		$('.subnav_sub').hide().each(function()
		{
			if($(this).attr('id') == 'd_'+id)
				$(this).show();
		});
	}, function()
	{
	});
	
	$('.subnav_sub').prev('a').hover(function()
	{
	}, function()
	{
	});
});