// JavaScript Document
todo.onload(function(){try{
	todo.get('cart_small_button').onclick=function(){
		var e=todo.get('cart_small_products');
		if(this.className=='close'){
			this.className='open';
			e.style.display='';
		}else{
			this.className='close';
			e.style.display='none';
		}
	};
}catch(er){}});