$(document).ready(function(){
				$('#add-poll').checked = false;		   
                $("#ul").lavaLamp({
                    fx: "backout", 
                    speed: 700,
                    click: function(event, menuItem) {
                        return false;
                    }
                });
               /* $('#last-comments').cycle({
                    fx:'scrollUp',
                    timeout:6000,
                    speed: 2000,
                    delay:-2000,
					fit:1,
					height:320,
                    pause:1
                });
                $('#last-questions').cycle({
                    fx:'scrollUp',
                    timeout:6000,
                    speed: 2000,
                    delay:-2000,
					fit:1,
					height:320,
                    pause:1
                });*/
				$('#plus').click(function(){
					$('#poll-answers').append(' <input type="text" class="input" name="answers[]" />');
				});
				$('#add-poll').click(function(){
					if (!this.checked)
					$('#ask-poll').hide(600);
					else
					$('#ask-poll').show(600);
				});
				$('#vote-form .answer').click(function(){
					$('#vote-form .answer').removeClass('active');									   
					$(this).addClass('active');					  
				});
				$('#show-results').click(function(){
					if ($("#poll-result").css("display") == 'none')
					{
						$('#poll-vote').fadeOut(0);
						$('#poll-result').fadeIn(600);
					}	
					else 
					{
						$('#poll-result').fadeOut(0);
						$('#poll-vote').fadeIn(600);
					}
				});
				$("#video").click(function(){
					/*$(".BBComWidget embed").attr({"width":"640","height":"480"});
					$("#video div").css("background","none !important");*/
					$("#video a").attr({"target":"blank"});
				});
				$(".blocked").append("<img class='ghost' src='/images/ghost.jpg' alt='Данное сообщение нарушает правила нашего сайта и, вероятно, является рекламой либо антирекламой заведения' title='Данное сообщение нарушает правила нашего сайта и, вероятно, является рекламой либо антирекламой заведения' />");
});
jQuery.fn.maxlength = function(options) {
  var settings = jQuery.extend({
    maxChars: 100, 
    leftChars: "Осталось символов: " 
  }, options);
  return this.each(function() {
    var me = $(this);
    var l = settings.maxChars;
    me.bind('keydown keypress keyup',function(e) {
      if(me.val().length>settings.maxChars) me.val(me.val().substr(0,settings.maxChars));
      l = settings.maxChars - me.val().length;
      me.next('div').html(settings.leftChars + l);
    });
    me.after('<div class="maxlen">' + settings.leftChars + settings.maxChars + '</div>');
  });
};



