jQuery.noConflict();
jQuery(document).ready(function(){
    jQuery("#commentform").hide();
	jQuery("#rate").hide();
	
	jQuery('.rating').click(function() {
		jQuery("#commentform").hide();
	});
	jQuery('.comment').click(function() {
		jQuery("#rate").hide();
	});
	
});

function showForm() {
	jQuery("#commentform").show("slow");
}

function showRating() {
    jQuery("#rate").show("slow");
}