$(document).ready(function(){
    $.get("/xhr/index/case/poll",{},function(data){
		$('#poll').html(data);
	});
	
});
function pollSubmit(){
	var textOptions = { 
		target:        '#poll'		// post-submit callback
	};
	$('#pollform').ajaxSubmit(textOptions); 
	return false; 
}
///calender en timeline
