define([],function()
{
$('ul.orders > li').click(function(e){
$('ul.orders > li ul').slideUp('fast');
$(this).find('ul').slideToggle('fast');
});
$('.article-order .order-block').hide();
$('.title-order-block').click(function(){
$(this).toggleClass('open')
$(this).parent().find('.order-block').toggle();
})
});