function scrollThumbsLeft(){
	//alert("hello");
	$('#thumbs ul').animate({
    'marginLeft' : "+=98px"
});
}
function scrollThumbsRight(){
	//alert("hello");
	$('#thumbs ul').animate({
    'marginLeft' : "-=98px"
});
}
