var leftMargin = 0;
var ulWidth=0;
var count = 0;
function AnimateIt(elem){
	leftMargin = $(elem).find('li').eq(0).find('img').width() + 1;
	$(elem).animate({ 
		marginLeft: "-" + leftMargin + "px"
	  }, 1500 );
	setTimeout('AnimateIt2("#slideshow")',4000);
}
function AnimateIt2(elem){
	addFirstToLast(elem);
	leftMargin = $(elem).find('li').eq(0).find('img').width() + 1;
	$(elem).animate({ 
		marginLeft: "-" + leftMargin + "px"
		}, 1500 );
	setTimeout('AnimateIt3("#slideshow")',4000);
}
function AnimateIt3(elem){
	addFirstToLast(elem);
	leftMargin = $(elem).find('li').eq(0).find('img').width();
	$(elem).animate({ 
		marginLeft: "-" + leftMargin + "px"
		}, 1500 );
	setTimeout('AnimateIt("#slideshow")',4000);
}
function addFirstToLast(elem){
	newelem = $(elem).find('li').eq(0);
	$(elem).find('li').eq(count-1).parent().append(newelem);
	//newelem.remove();
	$(elem).css('margin-left',0);
}
$(function() {
	$('#basketForm .remove').click(function(){
		//$(this).parent().parent().hide();
		$(this).parent().parent().find('.count').val(0);
		$('#basketForm').submit();
	});
	$('#slideshow li').each(function(i){
		ulWidth = ulWidth + $(this).find('img').width();
		count++;
	});
	$('#slideshow').width(ulWidth);
	var t=setTimeout('AnimateIt("#slideshow")',4000);
	$('.contentCenter').find('h2').each(function(){
		$(this).removeAttr('style');
		if($(this).text()=='Date tehnice'){
			$(this).css('clear','both');
		}
	});
	$('.contentCenter').find('h3, ul, li').each(function(){
		$(this).removeAttr('style');
	});
	$('.content .contenttable').find('tr:odd').addClass('odd').removeAttr('style').removeAttr('onmouseover').removeAttr('onmouseout').removeAttr('bgcolor');
	$('.content .contenttable').find('tr:even').addClass('even').removeAttr('style').removeAttr('onmouseover').removeAttr('onmouseout').removeAttr('bgcolor');
	$('.content .contenttable').find('td').removeAttr('style');
	
});
