$(window).load(function() {
	$('.promo').cycle({ 
		fx:      'scrollDown' 
	 });
	
	$('.referencie ul ').cycle({ 
		fx:      'scrollDown' 
	 });
	
	  $(".delete").append('<a href="#" class="delete" title="delete">x</a>');
	  $('a.delete').livequery('click', function() {
		  $(this).parents("tr").find("td.itemquantity").children("input").val(0);
		  $(this).parents("form").find("#updateform").children("input").click();		
		  
		return false;
	  });
    
});


