// JavaScript Document

var selection_id = null;
var selection_sn = null;
var open_menu = null;
var c_country = null;

// For menu

//Display Submenu
function showSubMenu(name)
{
	if(open_menu != null && open_menu != document.getElementById(name + "_submenu"))
		outSubMenu(open_menu);
	if(open_menu == null)
	{
		open_menu = document.getElementById(name + "_submenu");
		if(open_menu != null)
		{
			//Spry.Effect.DoBlind(open_menu.id, {duration: 1000, from:  '0%', to:  '100%', toggle: false});
			$("#" + name + "_submenu").fadeIn("def");
			document.getElementById(name).style.borderBottom = '1px solid';
		}
	}
}

//Close submenu
function outSubMenu(elt)
{
	elt.style.display='none';
	document.getElementById(elt.id.slice(0, elt.id.indexOf("_submenu"))).style.borderBottom = 'none';
	open_menu = null;
}

//Function changeImage
function changeImage(img, src)
{
	document.getElementById(img).src = 'images/jets/' + src;
	return true;
}

function showFullInfo()
{
	$('#full_specs_table').fadeIn('def');
	document.getElementById('see_more_button').innerHTML = '<a href="javascript:hideFullInfo();">- See basic specs</a>';
}

function hideFullInfo()
{
	$('#full_specs_table').fadeOut('def');
	document.getElementById('see_more_button').innerHTML = '<a href="javascript:showFullInfo();">+ See full specs</a>';
}

function showHideTestimonial(t)
{
	if(document.getElementById(t).style.display == "block")
	{
		$('#' + t).slideUp('fast');
	}
	else
	{
		$('#' + t).slideDown('fast');
	}
}

//Function showDealersFrom (display the div associated)
function showDealersFrom(country_code)
{
	if(c_country != null && c_country != country_code)
		$('#' + c_country).slideUp('def');
	c_country = country_code;
	$('#' + country_code).slideDown('def');
}
