
	jQuery(function()
	{
		jQuery.enableExternalLnks();
		jQuery.partyCheckboxes();
		jQuery('.menu-submenu').hover(function()
		{
			jQuery(this).children('ul').stop(true, true).delay(150).slideDown('fast');
		},function()
		{
			jQuery(this).children('ul').stop(true, true).delay(350).slideUp('fast')
		});
		jQuery('.pager a').click(function(){$('#page1, #page2').toggle();return false;})
		jQuery('#vote').submit(function()
		{
			$('.message').remove();
			if ($('input[name="answer"]', this).length > 1 && $('input:checked[name="answer"]', this).val() == undefined) {
				$('<div/>').attr('class', 'message').html('Изберете отговор на анкетата!').insertBefore(this);

				return false;
			}


			$.getJSON('/poll/rpc.php', $(this).serialize(),function(data)
			{
				switch (data.status) {
					case 0:
						$('#poll-items').empty().html(data.html);
						return false;
					case 1:
						window.location.reload();
						break;
				}
			});

			return false;
		});
	});

