$(document).ready(function(){
	$("form").submit(function() {				   				   
		var hasError = false;
		
		if(!$(this).find("input[@type=radio]:checked").size()){
			alert('Nie dkononałeś żadnego wyboru');
			return false;
        }; 
			
		if(hasError == false) {			
			var vote = $("input[@name=vote]:checked").val();
			var s = vote.split('-');
			
			var cid = s[0];
			var hid = s[1];

			$(this).hide();
			$("div#leftTxt").empty();
			$("div#leftTxt").append('<div style="background: #25384e; text-align: center; padding: 20px; height: 50px;" class="white">Dziękujemy za oddanie głosu.<br>Zachęcamy do zagłosowania w pozostałych kategoriach</div><div id="voteOther"><a href="http://www.tophotel.pl" class="gold">Zagłosuj w innej kategorii</a></div>');


			 $.ajax({
				type: "POST",
				url: "vote.php",
				data: "cid="+cid+"&hid="+hid
			});
	
			return true;
		}
		
		return false;
		
	});						   
});
