$(document).ready(function(){

	$(".poll_view").click(function(){
		target = '#'+$(this).attr('rel');
		$(this).colorbox({width:"50%", inline:true, href:target});
	});
	
	$(".poll_vote").click(function(){
		poll = $(this).parents('.poll');
		value = poll.find("input[name='choice']:checked").val();
		if(value==undefined){
			alert('Sila pilih satu undian');
			return false;
		}
		else
			alert('Terima Kasih kerana mengundi!');
	});
});
