(function($) {
 $.fn.Banner = function(options) {
	var opts = $.extend({},$.fn.Banner.defaults, options);
  var $container = $(this);
  var $obrazky = $container.children("li.scroll");
  $container.children("li").mouseover(function(){
    $obrazky.animate({width: "40px"}, { duration: opts.speed, queue: false,easing: "swing" });
    $(this).animate({width: "500px"}, { duration: opts.speed, queue: false,easing: "swing" });
  });
  $container.mouseout(function(){
    $obrazky.animate({width: "132px"}, { duration: opts.speed, queue: false,easing: "swing" });
  });
 }
 $.fn.Banner.defaults = {
			speed: 1000
 }

})(jQuery);