/*
Copyrights gloworganics, twig*
please contact us for usage of any code in this file or site.
*/

function go_load() {
}

function go_trackbar(val, barmin, barmax) {
	var obj = document.getElementById('tableProdItems');
	
	// cant find table
	if (!obj)
		return;
	
	// move table ((val -1) * 157px) * -1 = 
	var newpos = ((val -1) * 157 * -1);
	
	if (newpos > 0)
		newpos = 0;
	
	obj.style.left = newpos + 'px';
}

window.onload = go_load;