$(document).ready(function() 
{
	
	/*hlasovanie*/
	$("#splash_form").submit(function(){splashVote();return false;})
	$(".close").click(function(){$('#splash').slideUp(300);$('#overlay').fadeOut(300)});

	function splashVote()
	{
		$.ajax({
				   type: "POST",
				   url: '/ajax/splash_vote.php',
				   data: $("#splash_form input:checked").serialize()+'&poll_list_id='+$('#splash_poll_list_id').val(), 
				   success: function(msg)
				   {
						$("#poll_content").html(msg);
						$(".close").click(function(){$('#splash').remove();$('#overlay').remove()});
				   	$('#splash').remove();$('#overlay').remove()
				   },
				   error: function()
				   {
						
				   }
			   });	
			   		
					//$("#poll_content").html('Odosiela sa Vaše hlasovanie<br /><img src="/layout/loader1.gif" alt="" />');
					$("#poll_content_alert").show();
					$("#splash_form").hide();
	}
});