var currentpage=0;
var itemWidth=128;
var galPageCount=0;

var lgl=function(){
	  $gallery=$("#logogall");
	  $gallery.css({
			'width': 128,
			'height': 65,
			'clear': 'left',
			'position': 'relative',
			'margin': 0
		});
  
		$gallery.find('li').each(function(i){
			$(this).css({
				'position':'absolute',
				'top':0,
				'left':galPageCount*itemWidth,
				'width':itemWidth,
				'float':'left',
				'list-style':'none'
			});
		    galPageCount++;
		});
};

var animateleft=function(){
	currentpage++;
	if (currentpage==galPageCount)
	{
		currentpage=0;
	}
	
	$("#logogall").animate({'left':0-(currentpage*itemWidth)},'slow');
	setTimeout('animateleft();',3000);	
}