// JavaScript Document
function toggleDiv(objectID) {
	if (document.getElementById(objectID).style.display == 'block') {
		document.getElementById(objectID).style.display = 'none';
	} else {
		document.getElementById(objectID).style.display = 'block';
	}
	return
}
function showSamples() {
document.getElementById('prod_samples').style.display="block";
document.getElementById('prod_brands').style.display="none";
/*
document.getElementById('samples_btn').style.backgroundPosition='top';
document.getElementById('brands_btn').style.backgroundPosition='bottom';
*/
document.getElementById('brands_btn').setAttribute('class', 'not_selected');
document.getElementById('samples_btn').removeAttribute('class', 'not_selected');
}
function showBrands() {
document.getElementById('prod_samples').style.display="none";
document.getElementById('prod_brands').style.display="block";
document.getElementById('samples_btn').setAttribute('class', 'not_selected');
document.getElementById('brands_btn').removeAttribute('class', 'not_selected');
}

