jQuery.noConflict();
jQuery(document).ready( function($) {
	/*
	var winprofiles = {
		quizwin:{
			 width:750
			,height:500
			,scrollbars:1
			,center:1
		}
		,situationwin:{
			 width:850
			,height:640
			,scrollbars:1
			,center:1
		}
	}
	
	jQuery(".popupwindow").popupwindow(winprofiles);
	*/
	
	jQuery('#riddle-solve').click(function(e) {
		jQuery(this).hide();
		jQuery('#riddle-answer').fadeIn("slow");
		return false;
	});
});