var $j = jQuery.noConflict(); 
$j(document).ready(function(){	
	if ( $j("#qCorrect").length > 0 ){	
		$j('#qSelected').css({"color" : "#00b311", "font-weight" : "bold"});
	}
	if ( $j("#qIncorrect").length > 0 ){	
		$j('#qSelected').css({"color" : "#F00", "font-weight" : "bold"});
	}
	});