/*!
 * Awards Scrollbox
 * http://bnj.com/
 *
 * Copyright (c) 2009 Stephen Kozik
 *
 * Date: 2009-12-06
 * Revision: 1
 */

currentscrollbox = 1;	

function scrollboxright() {
	if (currentscrollbox<(maxawards-1)) {
		var itemtoscroll = "#scrollboxitem"+currentscrollbox;
		$(itemtoscroll).animate({ marginLeft: "-300px"}, 700);
		currentscrollbox++;
	}
}
function scrollboxleft() {
	if (currentscrollbox>1) {
	 	currentscrollbox--;
		var itemtoscroll = "#scrollboxitem"+currentscrollbox;
		$(itemtoscroll).animate({ marginLeft: "0px"}, 700);
	}
}