
function showSubNav(id) {
	document.getElementById('subNav_' + id).style.left = $('mNav_' + id).positionedOffset()[0] + 'px';
	document.getElementById('subNav_' + id).style.width = ($('mNav_' + id).getWidth() - 32) + 'px';
	
	$('subNav_' + id).show();
}

function hideSubNav(id) {
	$('subNav_' + id).hide();
}


var curSeedDrillsGalleryItem = 0;

function showSeedDrillsGalleryItem(id) {
	$('galleryThumb_' + curSeedDrillsGalleryItem).toggleClassName('galleryThumbOn');
	$('galleryLarge_' + curSeedDrillsGalleryItem).hide();
	
	$('galleryThumb_' + id).toggleClassName('galleryThumbOn');
	$('galleryLarge_' + id).show();
	
	curSeedDrillsGalleryItem = id;
}


