function changeQuestion(id,firstRun)
{

 if (jQuery.browser.msie) {
        try { 
            document.execCommand("BackgroundImageCache", false, true); 
        } catch(err) {}
    }

	questionId = "#pQuestion" + id;
	$('#questions p').hide();
	var options = {};
	options = {direction: "right"};
	if (!firstRun)
	{
		$(questionId).show("slide", {direction: "right"});
		$(questionId).show();
	}
	else
	{
		$(questionId).show();
	}

	return false;
}