function navlink()
{
window.location.href = "http://www.shiply.com";
}
function navlink2()
{
window.location.href = "http://www.shiply.com/myshiply.php";
}
function navlink3()
{
window.location.href = "https://www.shiply.com/list1.php";
}
function navlink4()
{
window.location.href = "http://www.shiply.com/service_providers/index.php";
}
function navlink5()
{
window.location.href = "http://www.shiply.com/search.php";
}
function navlink6()
{
window.location.href = "http://www.shiply.com/support/";
}

function show_international_dropdown() {
	if (document.getElementById('international_dropdown_list').style.display == 'block')
	{
		document.getElementById('international_dropdown_list').style.display = 'none';
		document.getElementById('international_dropdown_corner').style.backgroundImage = 'url("/images/int_dropdown_corner.gif")';
		document.getElementById('international_dropdown_corner').style.backgroundColor = 'transparent';
	}
	else
	{
		document.getElementById('international_dropdown_list').style.display = 'block';
		document.getElementById('international_dropdown_corner').style.backgroundImage = 'none';
		document.getElementById('international_dropdown_corner').style.backgroundColor = '#eee';
	}
}