/*!
 * Awards Scrollbox
 * http://bnj.com/
 *
 * Copyright (c) 2009 Stephen Kozik
 *
 * Date: 2009-12-06
 * Revision: 1
 */

currentscrollaward = 1;	

function scrollawardright() {
	if (currentscrollaward<(maxawards-1)) {
		var itemtoscroll = "#scrollitemaward"+currentscrollaward;
		$(itemtoscroll).animate({ marginLeft: "-300px"}, 700);
		currentscrollaward++;
	}
}
function scrollawardleft() {
	if (currentscrollaward>1) {
	 	currentscrollaward--;
		var itemtoscroll = "#scrollitemaward"+currentscrollaward;
		$(itemtoscroll).animate({ marginLeft: "0px"}, 700);
	}
}
