/* Rexall Home */
var poll = null;
jQuery(document).ready(function(){
	jQuery("#poll input[type=radio]").click(function(){	poll = jQuery(this).attr('id');	});
	jQuery(".submit").click(function(){ jQuery.post(ajax + 'framework.php', { 'promo':poll }, function(data){ showResults(); }); });
	jQuery("#viewResults").click(function(){ showResults(); });
});

jQuery(function(){


});

function showResults()
{
	jQuery("#poll").hide();
	jQuery("#results").show();
}