$(document).ready(function() {

	// Jquery enabled!	
	$("body").addClass('js');

	// Add class to poll labels
	$("#vote label").click(function(){
		$("#vote label").removeClass('active');
		$(this).addClass('active');		
	});

	// Facts or myths
	$('.factsmyths p.answers a').click(function(){
		var $classname = $(this).attr('class').split(' ').slice(-1);
		var $findfirstp = $(this).parents().next('.answer').find('p:first');
		if($(this).parents().next('.answer').css('display') != 'block') {
			if($classname == 'myth') {
				$findfirstp.prepend("<strong class=\"true\">TRUE:</strong> ");
				$(this).parents().addClass('active');
				$(this).addClass('selected');
			} else {
				$findfirstp.prepend("<strong class=\"false\">FALSE:</strong> ");
				$(this).parents().addClass('active');
				$(this).addClass('selected');
			}
		}
		$(this).parents().next('.answer').fadeIn('slow');
		return false;
	});
	
});
