jQuery(document).ready(function(){
	
	// Hide comments
	jQuery("#comments").hide();
	
	// Dissable right click
    jQuery(document).bind("contextmenu",function(e){
        return false;
    });
    
    //
    jQuery("#comment-toggle").bind('click', function(){
    	jQuery("#comments").toggle("slow");
    	return false;
    });


});

