function bulNavigation()
{
	var div = $('BulNav');	
	if(div.style.display == 'none')
		div.style.display = 'block';
	else
		div.style.display = 'none';
}