(function($) {
$.fn.newsScroll = function(options) {
return this.each(function() {
  var $this = $(this), defaults = {speed: 400, delay: 3000, list_item_height: $this.children('li').outerHeight() }, settings = $.extend({}, defaults, options);
  setInterval(function() {$this.children('li:first').animate({marginTop : '-' + settings.list_item_height, opacity: 'hide' }, settings.speed, function() { $this.children('li:first').appendTo($this).css('marginTop', 0).fadeIn(300); } ); }, settings.delay);});
}
})(jQuery);


function order(){
$("#order_dialog").dialog('open');
}

function login(){
$("#login_dialog").dialog('open');
}

function showinfo(id){
  $("#profile_dialog_content").html("<img src='/_tpl/default/img/loader.gif' border='0'> выполнение запроса..");
  $("#profile_dialog").dialog('open');
  $.post("/", { ajaload: "authorinfo", id: id}, function(data){
    $("#profile_dialog_content").html(data);
  }, "html");
  return false;
}

$(document).ready(function(){
  $("#order_dialog").dialog();
  $("#login_dialog").dialog();
  $("#logout_dialog").dialog();
  $("#profile_dialog").dialog();

  	$('.scrolling').newsScroll({
		speed: 1000,
		delay: 10000
	});

})