$(document).ready(function() {
	$('#formPoll').submit(function(e) {
		e.preventDefault();
		$.post('/poll/save.php', { pollanswers_id: $('input[name=pollanswers_id]:checked').val(), ppsec: $('input[name=ppsec]').val(), pollquestion_id: $('input[name=pollquestion_id]').val() },function (data) {
		data = jQuery.trim(data);
		if(data == 'false'){
			$('div.pollwrap').html('Your vote cannot be recorded'); 
		}else if(data == 'true'){
			location.reload(true);
		}
		});
	});
	
	$(".bet").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

	$(".bet").mouseover(function(){
		$(this).css({'background-color' : '#E6EFE0'})	
	});
	
	$(".bet").mouseout(function(){
		$(this).css({'background-color' : '#EFF7EA'})	
	});
	
 });
 
 